1

私はsymfony2チュートリアルに従っていて、第5章http://tutorial.symblog.co.uk/docs/customising-the-view-more-with-twig.htmlでTwigフィルター拡張機能を作成しようとしていましたが、私はm何をしたかわかりませんが、ページをロードすると、次のエラーが発生します。

InvalidArgumentException:ファイル「Twig.xml」が存在しません(/var/www/tester/symfony/vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/DependencyInjection/../Resources/config)。

twig.xmlが存在しない理由と、それを再作成する方法について何か考えはありますか?

{{ comment.created|created_ago }}私はsidebar.html.twigファイルに追加することから始めました。次に、/ src / tester / TestBundle /内に「Twig」フォルダーを作成し、次にこの中に「Extensions」フォルダーを作成しました。次に、次のコードを使用して、「Extensions」内に/testerTestBundleExtension.phpを作成しました。

namespace tester\TestBundle\Twig\Extensions;

class testerTestExtension extends \Twig_Extension
{
    public function getFilters()
    {
        return array(
            'created_ago' => new \Twig_Filter_Method($this, 'createdAgo'),
        );
    }

    public function createdAgo(\DateTime $dateTime)
    {
        $delta = time() - $dateTime->getTimestamp();
        if ($delta < 0)
            throw new \InvalidArgumentException("createdAgo is unable to handle dates in the future");

        $duration = "";
        if ($delta < 60)
        {
            // Seconds
            $time = $delta;
            $duration = $time . " second" . (($time > 1) ? "s" : "") . " ago";
        }
        else if ($delta <= 3600)
        {
            // Mins
            $time = floor($delta / 60);
            $duration = $time . " minute" . (($time > 1) ? "s" : "") . " ago";
        }
        else if ($delta <= 86400)
        {
            // Hours
            $time = floor($delta / 3600);
            $duration = $time . " hour" . (($time > 1) ? "s" : "") . " ago";
        }
        else
        {
            // Days
            $time = floor($delta / 86400);
            $duration = $time . " day" . (($time > 1) ? "s" : "") . " ago";
        }

        return $duration;
    }

    public function getName()
    {
        return 'tester_test_extension';
    }
}

アップデート:

ベンダーディレクトリを削除して`phpcomposer.phar install'を再実行すると、次のエラーが発生します。

ServiceNotFoundException:サービス「twig」は、存在しないサービス「assetic.twig_extension」に依存しています。

また、私のapp / autoload.phpは正しいですか?

<?php

use Doctrine\Common\Annotations\AnnotationRegistry;

$loader = require __DIR__.'/../vendor/autoload.php';

// intl
if (!function_exists('intl_get_error_code')) {
    require_once      __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs/functions.php';

    $loader->add('', __DIR__.'/../vendor/symfony/symfony/src/Symfony/Component/Locale/Resources/stubs');
}

AnnotationRegistry::registerLoader(array($loader, 'loadClass'));

return $loader;

アップデート:

私のcomposer.jsonは以下のとおりです。

{
    "name": "symfony/framework-standard-edition",
    "description": "The \"Symfony Standard Edition\" distribution",
    "autoload": {
        "psr-0": { "": "src/" }
    },
    "require": {
        "php": ">=5.3.3",
        "symfony/symfony": "2.1.*",
        "doctrine/orm": ">=2.2.3,<2.4-dev",
        "doctrine/doctrine-bundle": "1.0.*",
        "twig/twig": "1.*",
        "symfony/assetic-bundle": "2.1.*",
        "symfony/swiftmailer-bundle": "2.1.*",
        "symfony/monolog-bundle": "2.1.*",
        "sensio/distribution-bundle": "2.1.*",
        "sensio/framework-extra-bundle": "2.1.*",
        "sensio/generator-bundle": "2.1.*",
        "jms/security-extra-bundle": "1.2.*",
        "jms/di-extra-bundle": "1.1.*",
        "doctrine/data-fixtures": "dev-master",
        "doctrine/doctrine-fixtures-bundle": "dev-master",
        "doctrine/doctrine-migrations-bundle": "dev-master"
    },
    "scripts": {
        "post-install-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ],
        "post-update-cmd": [
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
            "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
        ]
    },
    "minimum-stability": "dev",
    "extra": {
        "symfony-app-dir": "app",
        "symfony-web-dir": "web",
        "symfony-assets-install": "symlink"
    } }
4

2 に答える 2

1

symfonyでTwigExtensionを作成すると、サービスとしてマークされます

たとえば、tester / TestBundle / Resources / config/services.ymlにあります

services:
  test_bundle.twig.tester_test_extension:
    class: tester\TestBundle\Twig\Extensions\testerTestExtension
    tags:
      - { name: twig.extension }

詳細については、ドキュメントを確認してくださいhttp://symfony.com/doc/current/cookbook/templating/twig_extension.html

于 2012-11-27T09:17:47.733 に答える
1

composer.json が正しくないようです。それよりも

"twig/twig": "1.*",

その行は次のようになります。

"twig/extensions": "1.0.*",
于 2012-12-01T02:31:00.580 に答える