Ejemplo n.º 1
0
 protected function isIncluded(ContentNode $contentNode)
 {
     if ($this->pageID != 0) {
         if ($contentNode->pageID != $this->pageID) {
             return false;
         }
     }
     if ($this->isACP) {
         return true;
     }
     return $contentNode->canRead();
 }