Changeset 6573 for trunk/src/includes/common/classes.php
- Timestamp:
- 06/16/2017 09:20:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/classes.php
r6384 r6573 67 67 * - query: The loop for this component (WP_Query) 68 68 * - current_id: The current ID of the queried object 69 * @uses BBP_Component::setup_globals() Setup the globals needed70 * @uses BBP_Component::includes() Include the required files71 * @uses BBP_Component::setup_actions() Setup the hooks and actions72 69 */ 73 70 public function __construct( $args = array() ) { … … 87 84 * 88 85 * @access private 89 *90 * @uses apply_filters() Calls 'bbp_{@link BBP_Component::name}_id'91 * @uses apply_filters() Calls 'bbp_{@link BBP_Component::name}_slug'92 86 */ 93 87 private function setup_globals( $args = array() ) { … … 103 97 * 104 98 * @access private 105 *106 * @uses do_action() Calls 'bbp_{@link BBP_Component::name}includes'107 99 */ 108 100 private function includes() { … … 116 108 * 117 109 * @access private 118 *119 * @uses add_action() To add various actions120 * @uses do_action() Calls121 * 'bbp_{@link BBP_Component::name}setup_actions'122 110 */ 123 111 private function setup_actions() { … … 135 123 * 136 124 * @since 2.0.0 bbPress (r2700) 137 *138 * @uses do_action() Calls 'bbp_{@link BBP_Component::name}_register_post_types'139 125 */ 140 126 public function register_post_types() { … … 146 132 * 147 133 * @since 2.0.0 bbPress (r2700) 148 *149 * @uses do_action() Calls 'bbp_{@link BBP_Component::name}_register_taxonomies'150 134 */ 151 135 public function register_taxonomies() { … … 157 141 * 158 142 * @since 2.0.0 bbPress (r2700) 159 *160 * @uses do_action() Calls 'bbp_{@link BBP_Component::name}_add_rewrite_tags'161 143 */ 162 144 public function add_rewrite_tags() { … … 168 150 * 169 151 * @since 2.0.0 bbPress (r2700) 170 *171 * @uses do_action() Calls 'bbp_{@link BBP_Component::name}_generate_rewrite_rules'172 152 */ 173 153 public function generate_rewrite_rules( $wp_rewrite ) { … … 185 165 * 186 166 * @since 2.0.0 bbPress (r2746) 187 *188 * @uses Walker189 167 */ 190 168 class BBP_Walker_Dropdown extends Walker { … … 235 213 * selected HTML attribute for option element. 236 214 * @param int $current_object_id 237 *238 * @uses bbp_is_forum_category() To check if the forum is a category239 * @uses current_user_can() To check if the current user can post in240 * closed forums241 * @uses bbp_is_forum_closed() To check if the forum is closed242 * @uses apply_filters() Calls 'bbp_walker_dropdown_post_title' with the243 * title, output, post, depth and args244 215 */ 245 216 public function start_el( &$output, $object, $depth = 0, $args = array(), $current_object_id = 0 ) { … … 446 417 * 447 418 * @since 2.6.0 bbPress (r5389) 448 *449 * @uses Walker450 419 */ 451 420 class BBP_Walker_Reply_Dropdown extends Walker { … … 500 469 * 501 470 * @param int $current_object_id Not Used 502 *503 * @uses bbp_is_forum_category() To check if the forum is a category504 * @uses current_user_can() To check if the current user can post in505 * closed forums506 * @uses bbp_is_forum_closed() To check if the forum is closed507 * @uses apply_filters() Calls 'bbp_walker_dropdown_post_title' with the508 * title, output, post, depth and args509 471 */ 510 472 public function start_el( &$output, $object, $depth = 0, $args = array(), $current_object_id = 0 ) {
Note: See TracChangeset
for help on using the changeset viewer.