コード例 #1
0
ファイル: Node.php プロジェクト: BGCX261/zibo-svn-to-git
 /**
  * Check whether this node is secured in any way
  * @return boolean true if this node is secured, false if not
  * @throws zibo\ZiboException when the NodeSettings are not set to this node
  */
 public function isSecured()
 {
     $this->checkSettings();
     return $this->settings->isSecured();
 }