Changeset 6573 for trunk/src/includes/admin/admin.php
- Timestamp:
- 06/16/2017 09:20:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/admin.php
r6566 r6573 82 82 * 83 83 * @since 2.0.0 bbPress (r2515) 84 *85 * @uses BBP_Admin::setup_globals() Setup the globals needed86 * @uses BBP_Admin::includes() Include the required files87 * @uses BBP_Admin::setup_actions() Setup the hooks and actions88 84 */ 89 85 public function __construct() { … … 148 144 * 149 145 * @access private 150 *151 * @uses add_action() To add various actions152 * @uses add_filter() To add various filters153 146 */ 154 147 private function setup_actions() { … … 203 196 * 204 197 * @since 2.0.0 bbPress (r2646) 205 *206 * @uses add_management_page() To add the Recount page in Tools section207 * @uses add_options_page() To add the Forums settings page in Settings208 * section209 198 */ 210 199 public function admin_menus() { … … 299 288 * 300 289 * @since 2.1.0 bbPress (r3689) 301 *302 * @uses add_submenu_page() To add the Update Forums page in Updates303 290 */ 304 291 public function network_admin_menus() { … … 339 326 * @since 2.0.0 bbPress (r2737) 340 327 * 341 * @uses add_settings_section() To add our own settings section342 * @uses add_settings_field() To add various settings fields343 * @uses register_setting() To register various settings344 328 * @todo Put fields into multidimensional array 345 329 */ … … 402 386 * @param int $user_id User id 403 387 * @param array $args Arguments 404 * @uses get_post() To get the post 405 * @uses apply_filters() Calls 'bbp_map_meta_caps' with caps, cap, user id and 406 * args 388 * 407 389 * @return array Actual capabilities for meta capability 408 390 */ … … 466 448 * 467 449 * @since 2.0.0 bbPress (r2737) 468 *469 * @uses apply_filters() Calls 'bbp_importer_path' filter to allow plugins470 * to customize the importer script locations.471 450 */ 472 451 public function register_importers() { … … 505 484 * 506 485 * @since 2.0.0 bbPress (r2743) 507 *508 * @uses current_user_can() To check notice should be displayed.509 486 */ 510 487 public function activation_notice() { … … 632 609 * 633 610 * @since 2.0.0 bbPress (r2464) 634 *635 * @uses remove_submenu_page() To remove menu items with alternate navigation636 611 */ 637 612 public function admin_head() { … … 655 630 * 656 631 * @since 2.0.0 bbPress (r2521) 657 *658 * @uses wp_admin_css_color() To register the color scheme659 632 */ 660 633 public function register_admin_style() { … … 707 680 * 708 681 * @since 2.2.0 bbPress (r4261) 709 *710 * @uses get_posts()711 * @uses bbp_get_topic_post_type()712 * @uses bbp_get_topic_id()713 * @uses bbp_get_topic_title()714 682 */ 715 683 public function suggest_topic() { … … 1005 973 * 1006 974 * @since 2.1.0 bbPress (r3689) 1007 *1008 * @uses get_blog_option()1009 * @uses wp_remote_get()1010 975 */ 1011 976 public static function update_screen() { … … 1050 1015 * 1051 1016 * @since 2.1.0 bbPress (r3689) 1052 *1053 * @uses get_blog_option()1054 * @uses wp_remote_get()1055 1017 */ 1056 1018 public static function network_update_screen() { … … 1173 1135 * 1174 1136 * @since 2.0.0 bbPress (r2596) 1175 *1176 * @uses BBP_Admin1177 1137 */ 1178 1138 function bbp_admin() {
Note: See TracChangeset
for help on using the changeset viewer.