Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
BuddyPress::legacy_constants()
Legacy BuddyPress constants.
Description Description
Try to avoid using these. Their values have been moved into variables in the instance, and have matching functions to get/set their values.
Source Source
File: class-buddypress.php
private function legacy_constants() { // Define the BuddyPress version. if ( ! defined( 'BP_VERSION' ) ) { define( 'BP_VERSION', $this->version ); } // Define the database version. if ( ! defined( 'BP_DB_VERSION' ) ) { define( 'BP_DB_VERSION', $this->db_version ); } // Define if deprecated functions should be ignored. if ( ! defined( 'BP_IGNORE_DEPRECATED' ) ) { define( 'BP_IGNORE_DEPRECATED', true ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
1.7.0 | Introduced. |