示例#1
0
文件: reading.php 项目: klan1/k1.lib
 public function __construct($db_table, $row_keys_text, $custom_auth_code = "")
 {
     if (!empty($row_keys_text)) {
         parent::__construct($db_table, $row_keys_text, $custom_auth_code);
     } else {
         DOM_notification::queue_mesasage(object_base_strings::$error_no_row_keys_text, "alert", $this->notifications_div_id, \k1lib\common_strings::$error);
     }
     /**
      * Necessary for do not loose the inputs with blank or null data
      */
     $this->skip_blanks_on_filters = TRUE;
 }
示例#2
0
文件: creating.php 项目: klan1/k1.lib
 public function __construct($db_table, $row_keys_text)
 {
     parent::__construct($db_table, $row_keys_text);
 }
示例#3
0
文件: listing.php 项目: klan1/k1.lib
 public function __construct($db_table, $row_keys_text)
 {
     parent::__construct($db_table, $row_keys_text);
     $this->skip_blanks_on_filters = TRUE;
     $this->stat_msg = listing_strings::$stats_default_message;
 }