Changeset 9877 for trunk/src/bp-members/bp-members-widgets.php
- Timestamp:
- 05/19/2015 01:40:26 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/bp-members-widgets.php
r9819 r9877 1 1 <?php 2 2 /** 3 * BuddyPress Members Widgets 3 * BuddyPress Members Widgets. 4 4 * 5 5 * @package BuddyPress … … 31 31 32 32 /** 33 * Constructor method 33 * Constructor method. 34 34 */ 35 35 public function __construct() { … … 153 153 * Update the Members widget options. 154 154 * 155 * @param array $new_instance The new instance options. 156 * @param array $old_instance The old instance options. 155 * @param array $new_instance The new instance options. 156 * @param array $old_instance The old instance options. 157 * 157 158 * @return array $instance The parsed options to be saved. 158 159 */ … … 171 172 * Output the Members widget options form. 172 173 * 173 * @param $instance Settings for this widget. 174 * @param array $instance Widget instance settings. 175 * 176 * @return string 174 177 */ 175 178 public function form( $instance ) { … … 221 224 * @since BuddyPress (2.3.0) 222 225 * 223 * @param $instance Instance 224 * @uses bp_parse_args() To merge widget settings into defaults 226 * @param array $instance Widget instance settings. 227 * 228 * @uses bp_parse_args() To merge widget settings into defaults. 229 * 230 * @return array 225 231 */ 226 232 public function parse_settings( $instance = array() ) { … … 321 327 * Update the Who's Online widget options. 322 328 * 323 * @param array $new_instance The new instance options. 324 * @param array $old_instance The old instance options. 329 * @param array $new_instance The new instance options. 330 * @param array $old_instance The old instance options. 331 * 325 332 * @return array $instance The parsed options to be saved. 326 333 */ … … 336 343 * Output the Who's Online widget options form. 337 344 * 338 * @param $instance Settings for this widget. 345 * @param array $instance Widget instance settings. 346 * 347 * @return string 339 348 */ 340 349 public function form( $instance ) { … … 367 376 * @since BuddyPress (2.3.0) 368 377 * 369 * @param $instance Instance 370 * @uses bp_parse_args() To merge widget settings into defaults 378 * @param array $instance Widget instance settings. 379 * 380 * @uses bp_parse_args() To merge widget settings into defaults. 381 * 382 * @return array 371 383 */ 372 384 public function parse_settings( $instance = array() ) { … … 467 479 * @param array $new_instance The new instance options. 468 480 * @param array $old_instance The old instance options. 481 * 469 482 * @return array $instance The parsed options to be saved. 470 483 */ … … 480 493 * Output the Recently Active widget options form. 481 494 * 482 * @param $instance Settings for this widget. 495 * @param array $instance Widget instance settings. 496 * 497 * @return string 483 498 */ 484 499 public function form( $instance ) { … … 511 526 * @since BuddyPress (2.3.0) 512 527 * 513 * @param $instance Instance 514 * @uses bp_parse_args() To merge widget settings into defaults 528 * @param array $instance Widget instance settings. 529 * 530 * @uses bp_parse_args() To merge widget settings into defaults. 531 * 532 * @return array 515 533 */ 516 534 public function parse_settings( $instance = array() ) {
Note: See TracChangeset
for help on using the changeset viewer.