예제 #1
0
 /**
  * @param 	string		$name
  * @return	RM_ReportValue_Object
  */
 public function loadObjectByName($name)
 {
     if (!isNull($result = $this->_mapper->storage()->loadObjectByKey('varname', $name))) {
         $this->_mapper->access($result, 'READ');
     }
     return $result;
 }
예제 #2
0
 public function getParent()
 {
     return $this->_mapper->storage()->loadObjectById($this->parent_id);
 }