Skip over navigation
Documentation
You are currently viewing documentation for a previously released version of OroCommerce. See the latest long-term support version.

@TitleTemplate

This annotation is used to configure the template that is used to render the page title when the controller tagged with this annotation is accessed:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
// ...
use Oro\Bundle\NavigationBundle\Annotation\TitleTemplate;

/**
 * @TitleTemplate("The page title")
 */
public function demoAction()
{
    // ...
}

You can use arbitrary placeholders here which you then have to replace later on in your template using the oro_title_set() Twig function:

1
{% oro_title_set({params : {"%username%": fullname }}) %}
ForumsForums
Back to top