Ejemplo n.º 1
0
 /**
  * Inherit from parent object. Name, Package, Class cannot be inherited
  *
  * @return void
  */
 protected function inheritParentObj()
 {
     if (!$this->m_InheritFrom) {
         return;
     }
     $parentObj = BizSystem::getObject($this->m_InheritFrom);
     $this->m_Title = $this->m_Title ? $this->m_Title : $parentObj->m_Title;
     $this->m_Icon = $this->m_Icon ? $this->m_Icon : $parentObj->m_Icon;
     $this->m_Description = $this->m_Description ? $this->m_Description : $parentObj->m_Description;
     $this->m_jsClass = $this->m_jsClass ? $this->m_jsClass : $parentObj->m_jsClass;
     $this->m_Height = $this->m_Height ? $this->m_Height : $parentObj->m_Height;
     $this->m_Width = $this->m_Width ? $this->m_Width : $parentObj->m_Width;
     $this->m_DefaultForm = $this->m_DefaultForm ? $this->m_DefaultForm : $parentObj->m_DefaultForm;
     $this->m_TemplateEngine = $this->m_TemplateEngine ? $this->m_TemplateEngine : $parentObj->m_TemplateEngine;
     $this->m_TemplateFile = $this->m_TemplateFile ? $this->m_TemplateFile : $parentObj->m_TemplateFile;
     $this->m_FormType = $this->m_FormType ? $this->m_FormType : $parentObj->m_FormType;
     $this->m_Range = $this->m_Range ? $this->m_Range : $parentObj->m_Range;
     $this->m_FixSearchRule = $this->m_FixSearchRule ? $this->m_FixSearchRule : $parentObj->m_FixSearchRule;
     $this->m_DefaultFixSearchRule = $this->m_DefaultFixSearchRule ? $this->m_DefaultFixSearchRule : $parentObj->m_DefaultFixSearchRule;
     $this->m_DataObjName = $this->m_DataObjName ? $this->m_DataObjName : $parentObj->m_DataObjName;
     $this->m_DirectMethodList = $this->m_DirectMethodList ? $this->m_DirectMethodList : $parentObj->m_DirectMethodList;
     $this->m_EventName = $this->m_EventName ? $this->m_EventName : $parentObj->m_EventName;
     $this->m_MessageFile = $this->m_MessageFile ? $this->m_MessageFile : $parentObj->m_MessageFile;
     $this->m_Messages = Resource::loadMessage($this->m_MessageFile, $this->m_Package);
     $this->m_CacheLifeTime = $this->m_CacheLifeTime ? $this->m_CacheLifeTime : $parentObj->m_CacheLifeTime;
     $this->m_CurrentPage = $this->m_CurrentPage ? $this->m_CurrentPage : $parentObj->m_CurrentPage;
     $this->m_StartItem = $this->m_StartItem ? $this->m_StartItem : $parentObj->m_StartItem;
     $this->m_DataPanel->merge($parentObj->m_DataPanel);
     $this->m_ActionPanel->merge($parentObj->m_ActionPanel);
     $this->m_NavPanel->merge($parentObj->m_NavPanel);
     $this->m_SearchPanel->merge($parentObj->m_SearchPanel);
     if ($this->m_DataPanel->current()) {
         foreach ($this->m_DataPanel as $elem) {
             $elem->adjustFormName($this->m_Name);
         }
     }
     if ($this->m_ActionPanel->current()) {
         foreach ($this->m_ActionPanel as $elem) {
             $elem->adjustFormName($this->m_Name);
         }
     }
     if ($this->m_NavPanel->current()) {
         foreach ($this->m_NavPanel as $elem) {
             $elem->adjustFormName($this->m_Name);
         }
     }
     if ($this->m_SearchPanel->current()) {
         foreach ($this->m_SearchPanel as $elem) {
             $elem->adjustFormName($this->m_Name);
         }
     }
     $this->m_Panels = array($this->m_DataPanel, $this->m_ActionPanel, $this->m_NavPanel, $this->m_SearchPanel);
 }
Ejemplo n.º 2
0
 /**
  * Inherit from parent object. Name, Package, Class cannot be inherited
  *
  * @return void
  */
 protected function inheritParentObj()
 {
     if (!$this->inheritFrom) {
         return;
     }
     $parentObj = Openbiz::getObject($this->inheritFrom);
     $this->title = $this->title ? $this->title : $parentObj->title;
     $this->icon = $this->icon ? $this->icon : $parentObj->icon;
     $this->objectDescription = $this->objectDescription ? $this->objectDescription : $parentObj->objectDescription;
     $this->jsClass = $this->jsClass ? $this->jsClass : $parentObj->jsClass;
     $this->height = $this->height ? $this->height : $parentObj->height;
     $this->width = $this->width ? $this->width : $parentObj->width;
     $this->templateEngine = $this->templateEngine ? $this->templateEngine : $parentObj->templateEngine;
     $this->templateFile = $this->templateFile ? $this->templateFile : $parentObj->templateFile;
     $this->formType = $this->formType ? $this->formType : $parentObj->formType;
     $this->range = $this->range ? $this->range : $parentObj->range;
     $this->fixSearchRule = $this->fixSearchRule ? $this->fixSearchRule : $parentObj->fixSearchRule;
     $this->defaultFixSearchRule = $this->defaultFixSearchRule ? $this->defaultFixSearchRule : $parentObj->defaultFixSearchRule;
     $this->dataObjName = $this->dataObjName ? $this->dataObjName : $parentObj->dataObjName;
     $this->eventName = $this->eventName ? $this->eventName : $parentObj->eventName;
     $this->messageFile = $this->messageFile ? $this->messageFile : $parentObj->messageFile;
     $this->objectMessages = MessageHelper::loadMessage($this->messageFile, $this->package);
     $this->cacheLifeTime = $this->cacheLifeTime ? $this->cacheLifeTime : $parentObj->cacheLifeTime;
     $this->dataPanel->merge($parentObj->dataPanel);
     $this->actionPanel->merge($parentObj->actionPanel);
     $this->navPanel->merge($parentObj->navPanel);
     $this->searchPanel->merge($parentObj->searchPanel);
     if ($this->dataPanel->current()) {
         foreach ($this->dataPanel as $elem) {
             $elem->adjustFormName($this->objectName);
         }
     }
     if ($this->actionPanel->current()) {
         foreach ($this->actionPanel as $elem) {
             $elem->adjustFormName($this->objectName);
         }
     }
     if ($this->navPanel->current()) {
         foreach ($this->navPanel as $elem) {
             $elem->adjustFormName($this->objectName);
         }
     }
     if ($this->searchPanel->current()) {
         foreach ($this->searchPanel as $elem) {
             $elem->adjustFormName($this->objectName);
         }
     }
     $this->panels = array($this->dataPanel, $this->actionPanel, $this->navPanel, $this->searchPanel);
 }