* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\MakerBundle\Maker; use Symfony\Bundle\MakerBundle\ConsoleStyle; use Symfony\Bundle\MakerBundle\DependencyBuilder; use Symfony\Bundle\MakerBundle\Generator; use Symfony\Bundle\MakerBundle\InputConfiguration; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Twig\Extension\AbstractExtension; /** * @author Javier Eguiluz * @author Ryan Weaver */ final class MakeTwigExtension extends AbstractMaker { public static function getCommandName(): string { return 'make:twig-extension'; } public static function getCommandDescription(): string { return 'Creates a new Twig extension class'; } public function configureCommand(Command $command, InputConfiguration $inputConf) { $command ->addArgument('name', InputArgument::OPTIONAL, 'The name of the Twig extension class (e.g. AppExtension)') ->setHelp(file_get_contents(__DIR__.'/../Resources/help/MakeTwigExtension.txt')) ; } public function generate(InputInterface $input, ConsoleStyle $io, Generator $generator) { $extensionClassNameDetails = $generator->createClassNameDetails( $input->getArgument('name'), 'Twig\\', 'Extension' ); $generator->generateClass( $extensionClassNameDetails->getFullName(), 'twig/Extension.tpl.php', [] ); $generator->writeChanges(); $this->writeSuccessMessage($io); $io->text([ 'Next: Open your new extension class and start customizing it.', 'Find the documentation at http://symfony.com/doc/current/templating/twig_extension.html', ]); } public function configureDependencies(DependencyBuilder $dependencies) { $dependencies->addClassDependency( AbstractExtension::class, 'twig' ); } }