Exemplo n.º 1
0
 public function __construct($identifiers)
 {
     if (is_string($identifiers)) {
         $this->pages[$identifiers] = CmsPageTable::findByIdentifier($identifiers);
     } elseif (is_array($identifiers)) {
         $this->pages = CmsPageTable::findByIdentifiers($identifiers);
     } else {
         $this->pages = NULL;
     }
 }