예제 #1
0
파일: rates.php 프로젝트: Qclanton/retheme
 public function __construct($wpdb)
 {
     parent::__construct($wpdb);
     $this->default_exemplar->creation_date = date("Y-m-d H:i:s");
     $this->default_exemplar->behaviour = "NONE";
     $this->default_exemplar->last_fl = "YES";
 }
예제 #2
0
파일: PHPArray.php 프로젝트: jbzoo/data
 /**
  * Class constructor
  * @param array|string $data The data array
  */
 public function __construct($data = array())
 {
     if ($data && is_string($data) && file_exists($data)) {
         $data = $this->_decode($data);
     }
     parent::__construct($data ? (array) $data : array());
 }
예제 #3
0
파일: News.class.php 프로젝트: Klym/flame
 function __construct($id = null, $title, $text, $full_text, $date, $author, $view, $type)
 {
     parent::__construct($id, $title, $text);
     $this->full_text = $full_text;
     $this->date = $date;
     $this->author = $author;
     $this->view = $view;
     $this->type = $type;
 }
예제 #4
0
파일: Form.php 프로젝트: ailixter/aiix.php
 /**
  *
  * <code>
  * //   Construct and choose new form to use:
  * AIIXForm::choose(new MyAIIXForm($data, new AIIXInput($_POST), '.ru');
  * </code>
  * @param array $data
  * @param Input $input
  * @param string $mod : modificator, i.e. language - '.ru'
  */
 public function __construct(array $data, Input $input, $mod = null)
 {
     $this->EOT = self::extract($data, '-EOT', $this->EOT);
     $this->CANCEL = self::extract($data, '-CANCEL', $this->CANCEL);
     $this->DEFTYPE = self::extract($data, '-DEFTYPE', $this->DEFTYPE);
     parent::__construct($data, true);
     $this->input = $input;
     $this->output = new Data();
     $this->alerts = new Data();
     $this->mod = $mod;
 }
예제 #5
0
 function __construct($id = null, $title, $text, $cat, $meta_d, $meta_k, $description, $view, $author, $date)
 {
     parent::__construct($id, $title, $text);
     $this->cat = $cat;
     $this->meta_d = $meta_d;
     $this->meta_k = $meta_k;
     $this->description = $description;
     $this->view = $view;
     $this->author = $author;
     $this->date = $date;
 }
예제 #6
0
파일: Fairy.php 프로젝트: bluefan/phpsource
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_expire(0);
 }
예제 #7
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->table_name = 'vip_special_player';
 }
예제 #8
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_table("tencent_yellow_special");
     $this->set_expire(0);
 }
예제 #9
0
 public function __construct($label, $sources, $flags = null, $searchOp = null)
 {
     $this->sources = $sources;
     parent::__construct($label, $flags, null, $searchOp);
 }
예제 #10
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->table_name = 'player_detail';
 }
예제 #11
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->Redis = $this->redis();
     $this->table_name = 'player_hero';
 }
예제 #12
0
 public function __construct($id = NULL)
 {
     parent::__construct($id, 'AdverseEvent');
 }
예제 #13
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->current_time = time();
 }
예제 #14
0
 function __construct()
 {
     parent::__construct();
     $this->tbl = 'row_material_master';
 }
예제 #15
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_expire(0);
     $this->set_table("fairy_train");
 }
예제 #16
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->table_name = 'game_daily_online_reward';
 }
예제 #17
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->Redis = $this->redis();
 }
예제 #18
0
 function __construct()
 {
     parent::__construct();
     $this->tbl = 'invoice';
 }
예제 #19
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_table("union_base");
     $this->set_expire(0);
 }
예제 #20
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_table("grab_treasure_success");
     $this->set_expire(0);
 }
예제 #21
0
 public function __construct()
 {
     parent::__construct('game', 'game_dev');
     $this->set_expire(0);
 }
예제 #22
0
 public function __construct($_owner, $_url)
 {
     parent::__construct($_owner);
     $this->l_url = $_url;
 }
예제 #23
0
 public function __construct()
 {
     parent::__construct('game', 'game');
 }
예제 #24
0
 public function __construct(array $data)
 {
     $data = array_merge($data, array("operation" => "Confirmacion"));
     $this->setRequiredFields(array("merchant" => array("name" => "Merchant - Nro Comercio", "xml" => "NROCOMERCIO"), "nro_operacion" => array("name" => "Nro Operacion", "xml" => "NROOPERACION")));
     parent::__construct($data);
 }
예제 #25
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
 }
예제 #26
0
파일: Violation.php 프로젝트: uhtoff/eCRF
 public function __construct($id = NULL)
 {
     parent::__construct($id, 'Violation');
 }
예제 #27
0
 public function __construct()
 {
     parent::__construct('setting', 'setting');
     $this->set_expire(0);
     $this->set_table('player_grade_function');
 }
예제 #28
0
 function __construct()
 {
     parent::__construct();
 }
예제 #29
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->table_name = 'union_tech';
 }
예제 #30
0
 public function __construct()
 {
     parent::__construct('game', 'game');
     $this->set_table("kf_arena");
 }