Changeset 10497 for trunk/src/bp-core/bp-core-wpabstraction.php
- Timestamp:
- 02/03/2016 05:01:13 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-wpabstraction.php
r10417 r10497 32 32 } 33 33 34 /* *34 /* 35 35 * Only add MS-specific abstraction functions if WordPress is not in multisite mode. 36 36 */ … … 45 45 /** 46 46 * Retrieve blog option. 47 * 48 * @since 1.0.0 47 49 * 48 50 * @see get_blog_option() … … 62 64 63 65 /** 64 * Add blog option 66 * Add blog option. 67 * 68 * @since 1.2.0 65 69 * 66 70 * @see add_blog_option() … … 82 86 * Update blog option. 83 87 * 88 * @since 1.2.0 89 * 84 90 * @see update_blog_option() 85 91 * … … 100 106 * Delete blog option. 101 107 * 108 * @since 1.5.0 109 * 102 110 * @see delete_blog_option() 103 111 * … … 117 125 * Switch to specified blog. 118 126 * 127 * @since 1.2.0 128 * 119 129 * @see switch_to_blog() 120 130 * … … 134 144 * Restore current blog. 135 145 * 146 * @since 1.2.0 147 * 136 148 * @see restore_current_blog() 137 149 * … … 148 160 * Retrive blogs associated with user. 149 161 * 162 * @since 1.2.0 163 * 150 164 * @see get_blogs_of_user() 151 165 * … … 161 175 162 176 if ( !function_exists( 'update_blog_status' ) ) { 177 163 178 /** 164 179 * Whether or not to update blog status. 180 * 181 * @since 1.2.0 165 182 * 166 183 * @see update_blog_status() … … 179 196 180 197 if ( !function_exists( 'is_subdomain_install' ) ) { 198 181 199 /** 182 200 * Whether or not if subdomain install. 201 * 202 * @since 1.2.5.1 183 203 * 184 204 * @see is_subdomain_install() … … 220 240 */ 221 241 if ( !function_exists( 'mb_strlen' ) ) { 242 222 243 /** 223 244 * Fallback implementation of mb_strlen(), hardcoded to UTF-8. … … 245 266 246 267 if ( !function_exists( 'mb_strpos' ) ) { 268 247 269 /** 248 270 * Fallback implementation of mb_strpos(), hardcoded to UTF-8. … … 269 291 270 292 if ( !function_exists( 'mb_strrpos' ) ) { 293 271 294 /** 272 295 * Fallback implementation of mb_strrpos(), hardcoded to UTF-8.
Note: See TracChangeset
for help on using the changeset viewer.