예제 #1
0
 /**
  *
  * @param boolean $pReload
  * @return Zupal_Nodes
  */
 function node($pReload = FALSE)
 {
     if ($pReload || is_null($this->_node)) {
         $this->_node = new Zupal_Nodes($this->nodeId());
         $this->_node->save();
     }
     return $this->_node;
 }