Neos\ContentRepository\Domain\Model\NodeInterface::isAccessible PHP Метод

isAccessible() публичный Метод

Tells if this node may be accessed according to the current security context.
public isAccessible ( ) : boolean
Результат boolean
    public function isAccessible();

Usage Example

Пример #1
0
 /**
  * Return TRUE/FALSE if the node is currently hidden or not in the menu; taking the "renderHiddenInIndex" configuration
  * of the Menu TypoScript object into account.
  *
  * This method needs to be called inside buildItems() in the subclasses.
  *
  * @param NodeInterface $node
  * @return boolean
  */
 protected function isNodeHidden(NodeInterface $node)
 {
     return $node->isVisible() === false || $this->getRenderHiddenInIndex() === false && $node->isHiddenInIndex() === true || $node->isAccessible() === false;
 }