public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $result['remote_icon'] = $this->appIcon;
     $result['release_date'] = $this->appReleaseDate;
     $result['install_state'] = $this->installStateStr;
     return $result;
 }
Example #2
0
 public function outputAttrs()
 {
     $output = parent::outputAttrs();
     if ($this->_directParentId && count($this->_parents) == 0) {
         $this->GetParents($this->_directParentId);
     }
     $output['parents'] = $this->_parents;
     return $output;
 }
Example #3
0
 public function outputAttrs()
 {
     $output['name'] = $this->objectName;
     $output['title'] = $this->title;
     $output['description'] = str_replace('\\n', "<br />", $this->objectDescription);
     $output['data'] = $this->draw();
     $output['height'] = $this->height;
     $output['width'] = $this->width;
     $parent = parent::outputAttrs();
     foreach ($parent as $key => $value) {
         $output[$key] = $value;
     }
     return $output;
 }
 public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $rec = $this->fetchData();
     $result['record'] = $rec;
     $result['record_name'] = $this->dataRecordName;
     return $result;
 }
Example #5
0
 public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $result['show_error'] = $this->isShowError;
     return $result;
 }
 public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $file = Openbiz::$app->getModulePath() . DIRECTORY_SEPARATOR . "service" . DIRECTORY_SEPARATOR . $this->configFile;
     if (!is_file($file)) {
         return;
     }
     $configArr = ObjectFactoryHelper::getXmlArray($file);
     $this->modeStatus = $configArr["PLUGINSERVICE"]["SECURITY"][strtoupper($this->configNode)]["ATTRIBUTES"]["MODE"];
     $result['status'] = $this->modeStatus;
     return $result;
 }
 public function outputAttrs()
 {
     $output = parent::outputAttrs();
     $viewobj = $this->getViewObject();
     $forms = array();
     $viewobj->formRefs->rewind();
     while ($viewobj->formRefs->valid()) {
         $form = $viewobj->formRefs->current();
         $forms[$form->objectName] = $form;
         $viewobj->formRefs->next();
     }
     $output['forms'] = $forms;
     $output['step'] = $viewobj->getCurrentStep();
     return $output;
 }
Example #8
0
 public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $file = OPENBIZ_APP_PATH . DIRECTORY_SEPARATOR . $this->configFile;
     if (!is_file($file)) {
         return;
     }
     $configArr = ObjectFactoryHelper::getXmlArray($file);
     $this->modeStatus = $configArr["APPLICATION"][strtoupper($this->configNode)]["ATTRIBUTES"]["MODE"];
     $result['status'] = $this->modeStatus;
     return $result;
 }
Example #9
0
 public function outputAttrs()
 {
     $result = parent::outputAttrs();
     $result['appInfo'] = $this->getAppInfo();
     return $result;
 }
Example #10
0
 public function outputAttrs()
 {
     $data = parent::outputAttrs();
     $data['config'] = $this->getConfig();
     return $data;
 }
 public function outputAttrs()
 {
     $output = parent::outputAttrs();
     $output['dataGroup'] = $this->fetchDataGroup();
     return $output;
 }
 public function outputAttrs()
 {
     $output = parent::outputAttrs();
     $output['show_widget'] = $this->showWidget;
     return $output;
 }