예제 #1
0
 /**
  * is this page content in draft ?
  *
  * @return boolean
  * @access public
  */
 function isDraft()
 {
     $this->_checkTemplate();
     if (!is_object($this->_template)) {
         return false;
     }
     return $this->_template->isDraft() ? true : false;
 }