Ejemplo n.º 1
0
 /**
  * @param mixed $object
  * @return Display
  */
 protected function initDisplay($object)
 {
     $display = new ObjectDisplay($object);
     $display->add('id', 'Identity')->add('title')->add('date', null, array(new Formatter\EmptyValue(), new Formatter\DateTime('Y-m-d H:i:s')))->add('visible', 'Visible', array(new Formatter\Boolean("yes", "no")))->add('categories')->add('createdAt', null, array(new Formatter\EmptyValue(), new Formatter\DateTime('Y-m-d H:i:s')))->add('creatorEmail');
     return $display;
 }
 protected function initDisplay($object)
 {
     $objectDisplay = new ObjectDisplay($object);
     $objectDisplay->add('name');
     return $objectDisplay;
 }