__construct() public method

public __construct ( string $table_name, boolean $withprefix = false, $per_page = 10, $mu_single_table = false )
$table_name string Table name for model
$withprefix boolean Set true if $tablename is with prefix otherwise it will prepend wordpress prefix with "rt_"
 /**
  * Constructor
  *
  * @access public
  * @return void
  */
 public function __construct()
 {
     parent::__construct('rtm_media_interaction', false, 10, true);
 }
Exemplo n.º 2
0
 function __construct()
 {
     parent::__construct('rtm_media', false, 10, true);
     $this->meta_table_name = "rt_rtm_media_meta";
 }
 function __construct()
 {
     parent::__construct('rtm_activity', false, 10, true);
 }
Exemplo n.º 4
0
 function __construct()
 {
     parent::__construct('rtm_api');
 }