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