7

作成してSymfonyGeneratorBundleテンプレートをオーバーライドしようとしています

\app\Resources\SensioGeneratorBundle\skeleton\crud\views\index.html.twig

そのファイルは次のものを置き換える必要があります。

\vendor\bundles\Sensio\Bundle\GeneratorBundle\Resources\skeleton\crud\views\index.html.twig

しかし、Symfony2 GeneratorBundleの標準のスケルトンビューをオーバーライドできないのcache:clear.ような新しいバンドルを作成せずにそれを行う方法の後でも、元のファイルを使用しますか?

4

3 に答える 3

14

直後にバンドルを登録します。SensioGeneratorBundleapp/AppKernel.php

// app/AppKernel.php

if (in_array($this->getEnvironment(), array('dev', 'test'))) {
    //.....
    $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
    $bundles[] = new Namespace\YourBundle();
}

// Or outside if, should you want your bundle to be available in production environment
$bundles[] = new Namespace\YourBundle();

次に、YourBundle.php オーバーライドregisterCommandsメソッドで、

// Bundle\YourBundle.php

// other declarations
use Symfony\Component\Console\Application;
use Sensio\Bundle\GeneratorBundle\Generator\DoctrineCrudGenerator;
use Symfony\Component\Filesystem\Filesystem;


public function registerCommands(Application $application){
    $crudCommand = $application->get('generate:doctrine:crud');
    $generator = new DoctrineCrudGenerator(new FileSystem, __DIR__.'/Resources/skeleton/crud');
    $crudCommand->setGenerator($generator);

    parent::registerCommands($application);
}

skeletonフォルダをコピーしYourBundle\Resourceてテンプレートを変更する必要があります。

于 2012-04-21T19:58:26.417 に答える
12

たとえば、2.3以降のバージョンで編集テンプレートを上書きするには、ファイルをコピーします。

vendor/sensio/generator-bundle/Sensio/Bundle/GeneratorBundle/Resources/skeleton/crud/views/edit.html.twig.twig

ディレクトリの場合:

app/Resources/SensioGeneratorBundle/skeleton/crud/views/edit.html.twig.twig

ここで、デフォルトのコマンドを使用してcrudを生成するだけで、新しいテンプレートが使用されます。

于 2013-09-05T14:47:47.603 に答える
0

m2mdasの答えは私のために働いたが、それが読むべきであることを発見した後でのみ

FileSystemの代わりにFilesystem!

これを確認するには、vendors / symfony/.../Filesystemフォルダーを調べてください。

于 2013-06-19T11:48:30.787 に答える