3

I have to check if a variable is a DateTimeobject or a simple string to use it in my template.

If the variable is a DateTime, I have to format it as a date; simply print it if is a string.

{% if post.date is DateTime %}
    {% set postDate = post.date|date %}
{% else %}
    {% set postDate = post.date %}
{% endif %}

<p>Il {{ postDate }}

I think I should do this using a Twig Test (as also suggested in this StackOverflow Answer about arrays), but I don't well understand in which folder of my Symfony App I should put the code and how to register it in the application.

Once wrote the test, how can I use it in my Twig templates in Symfony?

Community
  • 1
  • 1
Aerendir
  • 6,152
  • 9
  • 55
  • 108
  • 1
    See this answer http://stackoverflow.com/questions/10788138/instanceof-operator-in-twig-symfony-2 – Andrii Mishchenko Aug 14 '15 at 12:44
  • 2
    Or check if it quacks like a duck http://stackoverflow.com/questions/14482184/check-if-a-variable-is-a-date-with-twig – Flosculus Aug 14 '15 at 12:45
  • Thankyou! I've solved with a simple `{% if post.date.timezone is defined %}` found in one of the suggested links! Thank you! – Aerendir Aug 14 '15 at 13:00

1 Answers1

6

You should create a twig function

AcmeBundle\Twig\CheckExtension.php

<?php
namespace AcmeBundle\Twig;

class CheckExtension extends \Twig_Extension
{
    public function getFunctions() {
        return array(
            'isDateTime' => new \Twig_Function_Method($this, 'isDateTime'),
        );
    }

    public function isDateTime($date) {
        return ($date instanceof \DateTime); /* edit */
    }

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

services.yml

services:
    acme_check_extension:
        class: AcmeBundle\Twig\CheckExtension
        tags:
            - { name: twig.extension }

in your template:

{% if isDateTime(post.date) %} 
    ...
{% endif %}
Vincent
  • 733
  • 1
  • 9
  • 16