コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function display(Definition $definition)
 {
     if (!$this->isNull()) {
         return $this->datetime->format($definition->getFormat());
     }
     return parent::display($definition);
 }
コード例 #2
0
 /**
  * {@inheritDoc}
  */
 public function display(Definition $definition)
 {
     if ($this->isNull()) {
         return 'NC';
     }
     return sprintf($definition->getFormat(), (string) $this->getValue());
 }