コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function display(Definition $definition)
 {
     if (!$this->isNull()) {
         return $this->boolean ? 'Oui' : 'Non';
     }
     return parent::display($definition);
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function display(Definition $definition)
 {
     if (!$this->isNull()) {
         return $this->datetime->format($definition->getFormat());
     }
     return parent::display($definition);
 }