Symfony 2.2 - 从路由生成URL或只显示URL

时间:2013-04-27 12:56:05

标签: php symfony routing twig symfony-2.2

我正在为Symfony 2开发一个导航系统。到目前为止,它的工作非常好。到目前为止,有一个像这样的配置文件:

# The menu name ...
primary:
    # An item in the menu ...
    Home:
        enabled: 1
        # Routes where the menu item should be shown as 'active' ...
        routes:
            - "a_route_name"
        # Where the link goes to ... the problem ...
        target: "a_route_name"

此布局运行良好,菜单有效。除了在我的模板中,我只能使用与应用程序中的路径对应的目标值生成链接;即,不是外部网址。

生成导航的模板如下:

{# This is what puts the data for the menu into the page currently ... #}
{% set primary_nav = menu_data('primary') %}

<nav role="navigation" class="primary-nav">
    <ul class="clearfix">
        {% for key, item in primary_nav if item.enabled is defined and item.enabled %}
            {% if item.routes is defined and app.request.attributes.get('_route') in item.routes %}
                <li class="active">
            {% else %}
                <li>
            {% endif %}
                {% if item.target is defined %}
                    <a href="{{ path(item.target) }}">{{ key }}</a>
                {% else %}
                    {{ key }}
                {% endif %}
            </li>
        {% endfor %}
    </ul>
</nav>

是否有一种简单的方法可以允许path()函数,或者类似于从路由生成URL的方法,或者只是简单地使用给定的URL(如果它验证为一个)?

我尽可能地尝试url(),并查看了文档但看不到任何内容。

1 个答案:

答案 0 :(得分:2)

您可以创建一个Twig扩展,检查路由是否存在:

  • 如果存在,则返回相应的生成的URL

  • 否则,返回的网址(或其他内容)没有任何更改

在您的services.yml中,声明您的twig扩展并注入路由器组件。 添加以下行并更改名称空间:

  fuz_tools.twig.path_or_url_extension:
    class: 'Fuz\ToolsBundle\Twig\Extension\PathOrUrlExtension'
    arguments: ['@router']
    tags:
      - { name: twig.extension }

然后在您的包中创建一个Twig \ Extension目录,并创建PathOrUrlExtension.php:

<?php

namespace Fuz\ToolsBundle\Twig\Extension;

use Symfony\Bundle\FrameworkBundle\Routing\Router;

class PathOrUrlExtension extends \Twig_Extension
{

    private $_router;

    public function __construct(Router $router)
    {
        $this->_router = $router;
    }

    public function getFunctions()
    {
        return array(
                // will call $this->pathOrUrl if pathOrUrl() function is called from twig
                'pathOrUrl' => new \Twig_Function_Method($this, 'pathOrUrl')
        );
    }

    public function pathOrUrl($pathOrUrl)
    {
        // the route collection returns null on undefined routes
        $exists = $this->_router->getRouteCollection()->get($pathOrUrl);
        if (null !== $exists)
        {
            return $this->_router->generate($pathOrUrl);
        }
        return $pathOrUrl;
    }

    public function getName()
    {
        return "pathOrUrl";
    }

}

您现在可以使用新功能:

{{ pathOrUrl('fuz_home_test') }}
<br/>
{{ pathOrUrl('http://www.google.com') }}

将显示:

enter image description here