コード例 #1
0
ファイル: file.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'file';
     $this->id_column = 'id';
     $this->deleted_activated = 'id IS NOT NULL ';
 }
コード例 #2
0
ファイル: api_session.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'api_session';
     $this->load->model('Author');
 }
コード例 #3
0
ファイル: vipercharts.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'vipercharts';
 }
コード例 #4
0
ファイル: category.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'category';
 }
コード例 #5
0
ファイル: meta_dataset.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'meta_dataset';
     $this->deleted_activated = null;
 }
コード例 #6
0
ファイル: author.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'users';
     $this->deleted_activated = 'id IS NOT NULL ';
 }
コード例 #7
0
ファイル: thread.php プロジェクト: jaksmid/website
 function __construct()
 {
     parent::__construct();
     $this->table = 'thread';
     $this->search_ignore = array('the', 'are', 'and', 'but', 'does', 'etc', 'from');
 }