Example #1
0
 public function __construct()
 {
     parent::__construct('users', 'user_id');
     $this->sid = null;
     $this->uid = null;
     $this->onlineMap = null;
 }
Example #2
0
 public function __construct()
 {
     $this->imgDir = IMG_DIR;
     $this->imgSmallDir = IMG_SMALL_DIR;
     $this->imgSmallWidht = IMG_SMALL_WIDTH;
     $this->videoDir = VIDEO_DIR;
     $this->audioDir = AUDIO_DIR;
     parent::__construct('mediafile', 'fid');
 }
Example #3
0
 public function __construct()
 {
     parent::__construct('posts', 'post_id');
     $this->ck_sort_img_folder = CK_SORT_IMG_FOLDER;
     // Нужно ли сортировать по папка
     $this->ckupload_dir = CKUPLOAD_DIR;
     // Папка для загрузки картинок CKEditor
     $this->ck_temp_prefix = CK_TEMP_PREFIX;
     // Префикс для временной папки
 }
Example #4
0
 function __construct()
 {
     parent::__construct('blocks', 'block_id');
 }
Example #5
0
 function __construct()
 {
     parent::__construct('roles', 'role_id');
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'clients';
 }
Example #7
0
 public function Users()
 {
     parent::__construct();
 }
Example #8
0
 public function __construct()
 {
     $this->table = TB_PREFIX . 'collect';
     parent::__construct();
 }
Example #9
0
 function __construct()
 {
     $this->table = TB_PREFIX . "search";
     parent::__construct();
 }
Example #10
0
 public function __construct()
 {
     parent::__construct();
     $this->table = 'invoices';
 }
Example #11
0
 function __construct()
 {
     parent::__construct('poll_answers', 'aid');
 }
Example #12
0
 public function __construct()
 {
     parent::__construct('mailinglists', 'listid');
 }
Example #13
0
 public function __construct()
 {
     parent::__construct('gallery', 'gallery_id');
 }
Example #14
0
 function __construct()
 {
     $this->table = TB_PREFIX . 'role';
     parent::__construct();
 }
Example #15
0
 function __construct()
 {
     parent::__construct('options', 'option_name');
 }
Example #16
0
 function __construct($table)
 {
     $this->table = TB_PREFIX . $table;
     parent::__construct();
 }
Example #17
0
 public function __construct()
 {
     $this->table = TB_PREFIX . 'discuss';
     parent::__construct();
 }
Example #18
0
 public function __construct()
 {
     // задаем имя таблицы и первичный ключ
     parent::__construct('menu_link', 'mlid');
 }
Example #19
0
 public function System()
 {
     parent::__construct();
     $this->table = 'settings_system';
 }
Example #20
0
 function __construct()
 {
     parent::__construct('regions', 'regions_id');
 }
Example #21
0
 function __construct()
 {
     parent::__construct('poll', 'pid');
 }
Example #22
0
 public function __construct()
 {
     parent::__construct('menu', 'menu_id');
 }
Example #23
0
 public function __construct()
 {
     parent::__construct('mail', 'mail_id');
 }
Example #24
0
 public function __construct()
 {
     $this->table = TB_PREFIX . 'study';
     parent::__construct();
 }
Example #25
0
 public function Company()
 {
     parent::__construct();
     $this->table = 'companies';
 }