More wpdb cleanups, see #12362

git-svn-id: http://svn.automattic.com/wordpress/trunk@13376 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-02-24 18:58:52 +00:00
parent 12f9c6113e
commit f423a2ee5e
1 changed files with 37 additions and 33 deletions

View File

@ -568,10 +568,10 @@ class wpdb {
$this->prefix = $this->get_blog_prefix( $this->blogid ); $this->prefix = $this->get_blog_prefix( $this->blogid );
foreach ( (array) $this->tables( 'blog' ) as $table => $prefixed_table ) foreach ( $this->tables( 'blog' ) as $table => $prefixed_table )
$this->$table = $prefixed_table; $this->$table = $prefixed_table;
foreach ( (array) $this->tables( 'old' ) as $table => $prefixed_table ) foreach ( $this->tables( 'old' ) as $table => $prefixed_table )
$this->$table = $prefixed_table; $this->$table = $prefixed_table;
return $old_prefix; return $old_prefix;
@ -630,6 +630,14 @@ class wpdb {
* override the WordPress users and usersmeta tables that would otherwise * override the WordPress users and usersmeta tables that would otherwise
* be determined by the prefix. * be determined by the prefix.
* *
* The scope argument can take one of the following:
*
* 'all' - returns 'all' and 'global' tables. No old tables are returned.
* 'global' - returns the global tables for the installation, returning multisite tables only if running multisite.
* 'ms_global' - returns the multisite global tables, regardless if current installation is multisite.
* 'blog' - returns the blog-level tables for the queried blog.
* 'old' - returns tables which are deprecated.
*
* @since 3.0.0 * @since 3.0.0
* @uses wpdb::$tables * @uses wpdb::$tables
* @uses wpdb::$old_tables * @uses wpdb::$old_tables
@ -637,37 +645,35 @@ class wpdb {
* @uses wpdb::$ms_global_tables * @uses wpdb::$ms_global_tables
* @uses is_multisite() * @uses is_multisite()
* *
* @param string $scope Can be all, global, ms_global, blog, or old tables. Defaults to all. * @param string $scope Optional. Can be all, global, ms_global, blog, or old tables. Defaults to all.
* 'all' returns 'all' and 'global' tables. No old tables are returned. * @param bool $prefix Optional. Whether to include table prefixes. Default true. If blog
* 'global' returns the global tables for the installation, returning multisite tables only if running multisite.
* 'ms_global' returns the multisite global tables, regardless if current installation is multisite.
* 'blog' returns the blog-level tables for the queried blog.
* 'old' returns tables which are deprecated.
* @param bool $prefix Whether to include table prefixes. Default true. If blog
* prefix is requested, then the custom users and usermeta tables will be mapped. * prefix is requested, then the custom users and usermeta tables will be mapped.
* @param int $blog_id The blog_id to prefix. Defaults to wpdb::blogid. Used only when prefix is requested. * @param int $blog_id Optional. The blog_id to prefix. Defaults to wpdb::blogid. Used only when prefix is requested.
* @return array Table names. When a prefix is requested, the key is the unprefixed table name. * @return array Table names. When a prefix is requested, the key is the unprefixed table name.
*/ */
function tables( $scope = 'all', $prefix = true, $blog_id = 0 ) { function tables( $scope = 'all', $prefix = true, $blog_id = 0 ) {
switch ( $scope ) { switch ( $scope ) {
case 'old' : case 'all' :
$tables = $this->old_tables; $tables = array_merge( $this->global_tables, $this->tables );
break; if ( is_multisite() )
case 'blog' : $tables = array_merge( $tables, $this->ms_global_tables );
$tables = $this->tables;
break;
case 'ms_global' :
$tables = $this->ms_global_tables;
break; break;
case 'global' : case 'global' :
$tables = $this->global_tables; $tables = $this->global_tables;
if ( is_multisite() ) if ( is_multisite() )
$tables = array_merge( $tables, $this->ms_global_tables ); $tables = array_merge( $tables, $this->ms_global_tables );
break; break;
case 'all' : case 'ms_global' :
$tables = array_merge( $this->global_tables, $this->tables ); $tables = $this->ms_global_tables;
if ( is_multisite() ) break;
$tables = array_merge( $tables, $this->ms_global_tables ); case 'blog' :
$tables = $this->tables;
break;
case 'old' :
$tables = $this->old_tables;
break;
default :
return array();
break; break;
} }
@ -723,9 +729,9 @@ class wpdb {
} }
/** /**
* Weak escape * Weak escape, using addslashes()
* *
* @uses addslashes() * @see addslashes()
* @since {@internal Version Unknown}} * @since {@internal Version Unknown}}
* @access private * @access private
* *
@ -737,10 +743,10 @@ class wpdb {
} }
/** /**
* Real escape * Real escape, using mysql_real_escape_string() or addslashes()
* *
* @uses mysql_real_escape_string() * @see mysql_real_escape_string()
* @uses addslashes() * @see addslashes()
* @since 2.8 * @since 2.8
* @access private * @access private
* *
@ -786,7 +792,7 @@ class wpdb {
* Works on arrays. * Works on arrays.
* *
* @since 0.71 * @since 0.71
* @param string|array $data to escape * @param string|array $data to escape
* @return string|array escaped as query safe string * @return string|array escaped as query safe string
*/ */
function escape( $data ) { function escape( $data ) {
@ -809,7 +815,7 @@ class wpdb {
* *
* @uses wpdb::_real_escape() * @uses wpdb::_real_escape()
* @since 2.3.0 * @since 2.3.0
* @param string $string to escape * @param string $string to escape
* @return void * @return void
*/ */
function escape_by_ref( &$string ) { function escape_by_ref( &$string ) {
@ -1456,7 +1462,6 @@ class wpdb {
* @see wpdb::db_version() * @see wpdb::db_version()
* *
* @param string $db_cap the feature * @param string $db_cap the feature
* @param false|string|resource $dbh_or_table. Not implemented.
* @return bool * @return bool
*/ */
function has_cap( $db_cap ) { function has_cap( $db_cap ) {
@ -1489,16 +1494,15 @@ class wpdb {
foreach ( $trace as $call ) { foreach ( $trace as $call ) {
if ( isset( $call['class'] ) && __CLASS__ == $call['class'] ) if ( isset( $call['class'] ) && __CLASS__ == $call['class'] )
continue; // Filter out wpdb calls. continue; // Filter out wpdb calls.
$caller[] = isset( $call['class'] ) ? "{$call['class']}->{$call['function']}" : $call['function'];
} }
$caller = join( ', ', $caller );
return $caller; return join( ', ', $caller );
} }
/** /**
* The database version number. * The database version number.
* *
* @param false|string|resource $dbh_or_table. Not implemented.
* @return false|string false on failure, version number on success * @return false|string false on failure, version number on success
*/ */
function db_version() { function db_version() {