[ Index ] |
PHP Cross Reference of BuddyPress |
[Source view] [Print] [Project Stats]
WordPress Abstraction. The functions within this file will detect the version of WordPress you are running and will alter the environment so BuddyPress can run regardless.
File Size: | 430 lines (11 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
bp_get_major_wp_version() X-Ref |
Parse the WordPress core version number into the major release. return: double $wp_version since: 1.5.2 |
get_blog_option( $blog_id, $option_name, $default = false ) X-Ref |
Retrieve blog option. return: mixed param: int $blog_id Blog ID to fetch for. Not used. param: string $option_name Option name to fetch. param: bool $default Whether or not default. since: 1.0.0 |
add_blog_option( $blog_id, $option_name, $option_value ) X-Ref |
Add blog option. return: mixed param: int $blog_id Blog ID to add for. Not used. param: string $option_name Option name to add. param: mixed $option_value Option value to add. since: 1.2.0 |
update_blog_option( $blog_id, $option_name, $value ) X-Ref |
Update blog option. return: mixed param: int $blog_id Blog ID to update for. Not used. param: string $option_name Option name to update. param: mixed $value Option value to update. since: 1.2.0 |
delete_blog_option( $blog_id, $option_name ) X-Ref |
Delete blog option. return: mixed param: int $blog_id Blog ID to delete for. Not used. param: string $option_name Option name to delete. since: 1.5.0 |
switch_to_blog( $new_blog, $deprecated = null ) X-Ref |
Switch to specified blog. return: int param: mixed $new_blog New blog to switch to. Not used. param: null $deprecated Whether or not deprecated. Not used. since: 1.2.0 |
restore_current_blog() X-Ref |
Restore current blog. return: int since: 1.2.0 |
get_blogs_of_user( $user_id, $all = false ) X-Ref |
Retrive blogs associated with user. return: bool param: int $user_id ID of the user. Not used. param: bool $all Whether or not to return all. Not used. since: 1.2.0 |
update_blog_status( $blog_id, $pref, $value, $deprecated = null ) X-Ref |
Whether or not to update blog status. return: bool param: int $blog_id Blog to update status for. Not used. param: mixed $pref Preference. Not used. param: string $value Value. Not used. param: null $deprecated Whether or not deprecated. Not used. since: 1.2.0 |
is_subdomain_install() X-Ref |
Whether or not if subdomain install. return: bool since: 1.2.5.1 |
bp_core_get_status_sql( $prefix = false ) X-Ref |
Get SQL chunk for filtering spam users from member queries. return: string SQL chunk. param: string|bool $prefix Global table prefix. |
mb_strlen( $str, $enc = '' ) X-Ref |
Fallback implementation of mb_strlen(), hardcoded to UTF-8. return: int String length. param: string $str String to be measured. param: string $enc Optional. Encoding type. Ignored. |
mb_strpos( $haystack, $needle, $offset = 0, $encoding = '' ) X-Ref |
Fallback implementation of mb_strpos(), hardcoded to UTF-8. return: int|false Position of needle in haystack if found, else false. param: string $haystack String to search in. param: string $needle String to search for. param: int $offset Optional. Start position for the search. Default: 0. param: string $encoding Optional. Encoding type. Ignored. |
mb_strrpos( $haystack, $needle, $offset = 0, $encoding = '' ) X-Ref |
Fallback implementation of mb_strrpos(), hardcoded to UTF-8. return: string|false Position of last needle in haystack if found, else false. param: string $haystack String to search in. param: string $needle String to search for. param: int $offset Optional. Start position for the search. Default: 0. param: string $encoding Optional. Encoding type. Ignored. |
bp_catch_site_data( $errors = null, $data = array() X-Ref |
Catch the new site data for a later use. since: 6.0.0 |
bp_insert_site( $site, $args_or_user_id = null, $domain = '', $path = '', $network_id = 0, $meta = array() X-Ref |
Fires a BuddyPress hook when a new WordPress site is inserted into the database. This hook makes sure BuddyPress is back compatible with WordPress versions < 5.1.0. param: int|WP_Site $site The Site ID or the WP Site object. param: int|array $args_or_user_id An array of Site arguments or the User ID. param: string $domain Site domain. param: string $path Site path. param: int $network_id Network ID. Only relevant on multi-network installations. param: array $meta Meta data. Used to set initial site options. since: 6.0.0 |
bp_delete_site_no_tables_drop( $site ) X-Ref |
Makes sure the `bp_delete_site` hook is fired if site's deletion was performed without dropping tables. param: WP_Site $site The site object. since: 6.0.0 |
bp_delete_site( $site_id_or_error, $drop_or_site = false ) X-Ref |
Fires a BuddyPress hook when a new WordPress site is deleted. This hook makes sure BuddyPress is back compatible with WordPress versions < 5.1.0. param: int|WP_Error $site_id_or_error A WP Error object or the site ID. param: bool|WP_Site $drop_or_site A WP Site object or a boolean to inform whether site's table should be dropped. since: 6.0.0 |
Generated: Thu Nov 21 01:00:57 2024 | Cross-referenced by PHPXref 0.7.1 |