Skip to content
This repository was archived by the owner on Aug 14, 2019. It is now read-only.

Commit e1fae05

Browse files
authored
Migration changes (#2)
- change namespaces - change links - change package name - fix package name in code - Add information about fork - Update authors
1 parent 947de2a commit e1fae05

File tree

91 files changed

+264
-258
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+264
-258
lines changed

Controller/Base64Controller.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Controller;
12+
namespace SymfonyHackers\Bundle\FormBundle\Controller;
1313

1414
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
1515
use Symfony\Component\DependencyInjection\ContainerInterface;

Controller/ImageController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Controller;
12+
namespace SymfonyHackers\Bundle\FormBundle\Controller;
1313

1414
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
1515
use Symfony\Component\DependencyInjection\ContainerInterface;
1616
use Symfony\Component\HttpFoundation\JsonResponse;
17-
use Genemu\Bundle\FormBundle\Gd\File\Image;
17+
use SymfonyHackers\Bundle\FormBundle\Gd\File\Image;
1818
use Symfony\Component\HttpFoundation\Request;
1919

2020
/**

Controller/UploadController.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Controller;
12+
namespace SymfonyHackers\Bundle\FormBundle\Controller;
1313

1414
use Symfony\Component\DependencyInjection\ContainerAwareInterface;
1515
use Symfony\Component\DependencyInjection\ContainerInterface;
1616
use Symfony\Component\HttpFoundation\JsonResponse;
17-
use Genemu\Bundle\FormBundle\Gd\File\Image;
17+
use SymfonyHackers\Bundle\FormBundle\Gd\File\Image;
1818
use Symfony\Component\HttpFoundation\Request;
1919

2020
/**

DependencyInjection/Compiler/FormPass.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\DependencyInjection\Compiler;
12+
namespace SymfonyHackers\Bundle\FormBundle\DependencyInjection\Compiler;
1313

1414
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
1515
use Symfony\Component\DependencyInjection\ContainerBuilder;
@@ -29,7 +29,7 @@ public function process(ContainerBuilder $container)
2929
$resources = $container->getParameter('twig.form.resources');
3030

3131
foreach (array('div', 'jquery', 'stylesheet') as $template) {
32-
$resources[] = 'GenemuFormBundle:Form:' . $template . '_layout.html.twig';
32+
$resources[] = 'SHFormBundle:Form:' . $template . '_layout.html.twig';
3333
}
3434

3535
$container->setParameter('twig.form.resources', $resources);

DependencyInjection/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\DependencyInjection;
12+
namespace SymfonyHackers\Bundle\FormBundle\DependencyInjection;
1313

1414
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
1515
use Symfony\Component\Config\Definition\Builder\TreeBuilder;

DependencyInjection/GenemuFormExtension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\DependencyInjection;
12+
namespace SymfonyHackers\Bundle\FormBundle\DependencyInjection;
1313

1414
use Symfony\Component\DependencyInjection\DefinitionDecorator;
1515
use Symfony\Component\HttpKernel\DependencyInjection\Extension;

Form/Core/ChoiceList/AjaxSimpleChoiceList.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Form\Core\ChoiceList;
12+
namespace SymfonyHackers\Bundle\FormBundle\Form\Core\ChoiceList;
1313

1414
use Symfony\Component\Form\Extension\Core\ChoiceList\SimpleChoiceList;
1515

Form/Core/DataTransformer/ChoiceToJsonTransformer.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Form\Core\DataTransformer;
12+
namespace SymfonyHackers\Bundle\FormBundle\Form\Core\DataTransformer;
1313

1414
use Symfony\Component\Form\DataTransformerInterface;
1515
use Symfony\Component\Form\Exception\UnexpectedTypeException;

Form/Core/EventListener/FileListener.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Form\Core\EventListener;
12+
namespace SymfonyHackers\Bundle\FormBundle\Form\Core\EventListener;
1313

1414
use Symfony\Component\Form\FormEvents;
1515
use Symfony\Component\Form\FormEvent;
1616
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1717
use Symfony\Component\HttpFoundation\File\File;
1818

19-
use Genemu\Bundle\FormBundle\Gd\File\Image;
19+
use SymfonyHackers\Bundle\FormBundle\Gd\File\Image;
2020

2121
/**
2222
* Adds a protocol to a URL if it doesn't already have one.

Form/Core/EventListener/GeolocationListener.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
<?php
22

33
/*
4-
* This file is part of the GenemuFormBundle package.
4+
* This file is part of the SHFormBundle package.
55
*
66
* (c) Olivier Chauvel <[email protected]>
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Genemu\Bundle\FormBundle\Form\Core\EventListener;
12+
namespace SymfonyHackers\Bundle\FormBundle\Form\Core\EventListener;
1313

1414
use Symfony\Component\Form\FormEvents;
1515
use Symfony\Component\Form\FormEvent;
1616
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
1717

18-
use Genemu\Bundle\FormBundle\Geolocation\AddressGeolocation;
18+
use SymfonyHackers\Bundle\FormBundle\Geolocation\AddressGeolocation;
1919

2020
/**
2121
* GeoListener

0 commit comments

Comments
 (0)