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