public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
     # call superclass constructor
 }
Пример #2
0
 public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
 }
Пример #3
0
 public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
     if (!ca_editor_uis::$s_loaded_relationship_tables) {
         require_once __CA_MODELS_DIR__ . '/ca_relationship_types.php';
         $t_rel = new ca_relationship_types();
         $va_rels = $t_rel->getRelationshipsUsingTypes();
         $o_dm = Datamodel::load();
         foreach ($va_rels as $vn_table_num => $va_rel_table_info) {
             BaseModel::$s_ca_models_definitions['ca_editor_uis']['FIELDS']['editor_type']['BOUNDS_CHOICE_LIST'][$va_rel_table_info['name']] = $vn_table_num;
         }
         ca_editor_uis::$s_loaded_relationship_tables = true;
     }
 }
 public function __construct($pn_id = null)
 {
     // Filter list of tables display can be used for to those enabled in current config
     BaseModel::$s_ca_models_definitions['ca_bundle_displays']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST'] = caFilterTableList(BaseModel::$s_ca_models_definitions['ca_bundle_displays']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST']);
     global $_ca_bundle_displays_settings;
     parent::__construct($pn_id);
     //
     $this->SETTINGS = new ModelSettings($this, 'settings', $_ca_bundle_displays_settings);
 }
Пример #5
0
 public function __construct($pn_id = null)
 {
     // Filter list of tables set can be used for to those enabled in current config
     BaseModel::$s_ca_models_definitions['ca_sets']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST'] = caFilterTableList(BaseModel::$s_ca_models_definitions['ca_sets']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST']);
     parent::__construct($pn_id);
     # call superclass constructor
 }
Пример #6
0
 public function __construct($pn_id = null)
 {
     $this->opo_app_plugin_manager = new ApplicationPluginManager();
     global $_ca_data_exporters_settings;
     parent::__construct($pn_id);
     // settings
     $this->initSettings();
 }
Пример #7
0
 public function __construct($pn_id = null)
 {
     global $_ca_search_forms_settings;
     // Filter list of tables form can be used for to those enabled in current config
     BaseModel::$s_ca_models_definitions['ca_search_forms']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST'] = caFilterTableList(BaseModel::$s_ca_models_definitions['ca_search_forms']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST']);
     parent::__construct($pn_id);
     # call superclass constructor
     $this->opo_search_config = Configuration::load($this->_CONFIG->get("search_config"));
     $this->opo_search_indexing_config = Configuration::load($this->opo_search_config->get("search_indexing_config"));
     $this->SETTINGS = new ModelSettings($this, 'settings', $_ca_search_forms_settings);
 }
 public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
     # call superclass constructor
     $o_config = $this->getAppConfig();
     $this->opo_type_config = Configuration::load($o_config->get('annotation_type_config'));
 }
Пример #9
0
 public function __construct($pn_id = null)
 {
     // Filter list of tables importers can be used for to those enabled in current config
     BaseModel::$s_ca_models_definitions['ca_data_importers']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST'] = BaseModel::$s_ca_models_definitions['ca_data_importers']['FIELDS']['table_num']['BOUNDS_CHOICE_LIST'];
     parent::__construct($pn_id);
     $this->initSettings();
 }
 public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
     # call superclass constructor
     //
     if ($pn_id) {
         $this->loadSubtypeLists();
     }
 }
 public function __construct($pn_id = null)
 {
     parent::__construct($pn_id);
     # call superclass constructor
     $o_config = $this->getAppConfig();
     $this->opo_type_config = Configuration::load(__CA_CONF_DIR__ . '/annotation_types.conf');
 }