/**
  *
  * @global type $wpdb
  * @param string $table_name with or without wpdb prefix
  * @param string $pk_column name of primary key column on THIS table
  * @param string $fk_column the name of the COLUMN that is a foreign key to the primary table's primary key
  * @param string $extra_join_conditions string for additional SQL to add onto the join statement's ON condition
  * @param boolean $global whether the table is "global" as in there is only 1 table on an entire multisite install,
  *					or whether each site on a multisite install has a copy of this table
  */
 function __construct($table_name, $pk_column, $fk_column = null, $extra_join_conditions = null, $global = false)
 {
     $this->_fk_on_table = $fk_column;
     $this->_extra_join_conditions = $extra_join_conditions;
     parent::__construct($table_name, $pk_column, $global);
 }
 /**
  *
  * @global type $wpdb
  * @param string $table_name with or without wpdb prefix
  * @param string $pk_column name of primary key column
  * @param boolean $global whether the table is "global" as in there is only 1 table on an entire multisite install,
  *					or whether each site on a multisite install has a copy of this table
  */
 function __construct($table_name, $pk_column = null, $global = false)
 {
     parent::__construct($table_name, $pk_column, $global);
 }
Пример #3
0
 function __construct($table_name, $pk_column = null)
 {
     parent::__construct($table_name, $pk_column);
 }