当前位置: 首页>>代码示例>>PHP>>正文


PHP Fields::__construct方法代码示例

本文整理汇总了PHP中Fields::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP Fields::__construct方法的具体用法?PHP Fields::__construct怎么用?PHP Fields::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Fields的用法示例。


在下文中一共展示了Fields::__construct方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

 function __construct($fields_xml = "")
 {
     //if (is_object($fields_xml)) {
     //    $this->fields = $fields_xml->fields;
     //$this->
     //} else {
     parent::__construct($fields_xml, null);
     //}
 }
开发者ID:philfree,项目名称:radria,代码行数:9,代码来源:FieldsForm.php

示例2: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_array";
     $this->real_data = array();
     $this->bookId = '';
     $this->value = array();
     $this->real_data = array();
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:9,代码来源:field_array_guzhang.php

示例3: __construct

 /**
  * Constructor
  */
 public function __construct($config = array())
 {
     // first we run the perent constructor
     if (parent::__construct($config)) {
         // set if line numbers should be added to comments
         $this->loadLineNr = $this->componentData->debug_linenr ? true : false;
         return true;
     }
     return false;
 }
开发者ID:vdm-io,项目名称:Joomla-Component-Builder,代码行数:13,代码来源:e_Interpretation.php

示例4: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_array";
     $this->real_data = array();
     $this->bookId = '';
     $this->value = array();
     $this->real_data = array();
     $this->count = 0;
     $this->field_typ = 'Peijianweixiu_model';
     $this->dataModel = new $this->field_typ();
     $this->listFields = array('typ', 'xinghao', 'name', 'pinpai', 'baoxiu', 'jiage', 'counter', 'gongshi', 'xinghaoId', 'isZidai');
     $this->showListFields = array(array('typ', 'name'), array('pinpai', 'xinghao'), array('baoxiu', 'jiage'));
     $this->mustFields = array('typ' => true, 'name' => true, 'pinpai' => true);
     $this->templates = '{typ} : {pinpai}-{name} {xinghao}(保修{baoxiu}月,参考价格{jiage})';
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:16,代码来源:field_array_peijianweixiu.php

示例5: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_array_relate";
     $this->tableName = '';
     $this->valueField = '';
     $this->showField = '';
     $this->whereData = array();
     $this->valueSetted = false;
     $this->showValue = ' - ';
     $this->enum = array();
     $this->needOrgId = 1;
     $this->relate_id_is_id = true;
     $this->value_checked = 0;
     $this->value = array();
     $this->id_lists = array();
     $this->relate_id_is_id = true;
     $this->linked_lists = null;
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:19,代码来源:field_array_relate.php

示例6: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_mongoid";
     $this->value = '';
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:6,代码来源:field_mongoid.php

示例7: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_cartype";
     $this->real_data = array("", "", "");
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:6,代码来源:field_cartype.php

示例8: __construct

 public function __construct($show_name, $name, $is_must_input = false)
 {
     parent::__construct($show_name, $name, $is_must_input);
     $this->typ = "Field_array";
 }
开发者ID:AnthemiusGuo,项目名称:managerproject,代码行数:5,代码来源:field_array.php


注:本文中的Fields::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。