Esempio n. 1
0
 function __construct()
 {
     parent::_connect();
     $this->field_id = 'id';
     $this->class_name = '\\LRS\\OfficeServer\\Model\\People';
     $this->table_name = 'peoples';
     $this->count_query = 'SELECT * FROM ' . $this->table_name;
 }
Esempio n. 2
0
 function __construct()
 {
     parent::_connect();
     $this->field_id = 'ID';
     $this->class_name = '\\LRS\\OfficeServer\\Model\\Grup';
     $this->table_name = 'pbk_groups';
     $this->count_query = 'SELECT * FROM ' . $this->table_name;
 }
Esempio n. 3
0
 function __construct()
 {
     parent::_connect();
     $this->field_id = 'ID';
     $this->class_name = '\\LRS\\OfficeServer\\Model\\PesanTerkirim';
     $this->table_name = 'sentitems';
     $this->table_pbk = 'pbk';
     $this->count_query = 'SELECT * FROM ' . $this->table_name;
 }
Esempio n. 4
0
 function __construct()
 {
     parent::_connect();
     $this->field_id = 'ID';
     $this->class_name = '\\LRS\\OfficeServer\\Model\\PesanKeluar';
     $this->class_outbox_multipart = '\\LRS\\OfficeServer\\Model\\PesanKeluarBagian';
     $this->table_name = 'outbox';
     $this->table_outbox_multipart = 'outbox_multipart';
     $this->table_pbk = 'pbk';
     $this->count_query = 'SELECT * FROM ' . $this->table_name;
 }
Esempio n. 5
0
 function __construct()
 {
     parent::_connect();
     $this->field_id = 'ID';
     $this->class_name = '\\LRS\\OfficeServer\\Model\\PesanMasuk';
     $this->table_name = 'inbox';
     $this->table_pbk = 'pbk';
     $this->table_sentitems = 'sentitems';
     $this->count_query = 'SELECT * FROM ' . $this->table_name;
     $this->unread_count_query = 'SELECT * FROM ' . $this->table_name . ' WHERE Processed = "false"';
     $this->public_unread_count_query = 'SELECT * FROM ' . $this->table_name . ' WHERE TextDecoded LIKE "' . self::public_prefix . '%" AND Processed = "false"';
 }