Changeset 5951 for trunk/src/includes/common/shortcodes.php
- Timestamp:
- 10/28/2015 04:07:50 AM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/common/shortcodes.php (modified) (28 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/shortcodes.php
r5829 r5951 15 15 * bbPress Shortcode Class 16 16 * 17 * @since bbPress (r3031)17 * @since 2.0.0 bbPress (r3031) 18 18 */ 19 19 class BBP_Shortcodes { … … 31 31 * Add the register_shortcodes action to bbp_init 32 32 * 33 * @since bbPress (r3031)33 * @since 2.0.0 bbPress (r3031) 34 34 * 35 35 * @uses setup_globals() … … 44 44 * Shortcode globals 45 45 * 46 * @since bbPress (r3143) 46 * @since 2.0.0 bbPress (r3143) 47 * 47 48 * @access private 48 49 * … … 100 101 * Register the bbPress shortcodes 101 102 * 102 * @since bbPress (r3031)103 * @since 2.0.0 bbPress (r3031) 103 104 * 104 105 * @uses add_shortcode() … … 114 115 * Unset some globals in the $bbp object that hold query related info 115 116 * 116 * @since bbPress (r3034)117 * @since 2.0.0 bbPress (r3034) 117 118 */ 118 119 private function unset_globals() { … … 145 146 * in the correct location in the_content() instead of when it's created. 146 147 * 147 * @since bbPress (r3079)148 * @since 2.0.0 bbPress (r3079) 148 149 * 149 150 * @param string $query_name … … 164 165 * Return the contents of the output buffer and flush its contents. 165 166 * 166 * @since bbPress(r3079)167 * @since 2.0.0 bbPress (r3079) 167 168 * 168 169 * @uses BBP_Shortcodes::unset_globals() Cleans up global values … … 187 188 * and return to ensure that post/page contents are displayed first. 188 189 * 189 * @since bbPress (r3031)190 * @since 2.0.0 bbPress (r3031) 190 191 * 191 192 * @param array $attr … … 213 214 * and return to ensure that post/page contents are displayed first. 214 215 * 215 * @since bbPress (r3031)216 * @since 2.0.0 bbPress (r3031) 216 217 * 217 218 * @param array $attr … … 256 257 * post/page contents are displayed first. 257 258 * 258 * @since bbPress (r3566)259 * @since 2.1.0 bbPress (r3566) 259 260 * 260 261 * @uses get_template_part() … … 278 279 * and return to ensure that post/page contents are displayed first. 279 280 * 280 * @since bbPress (r3031)281 * @since 2.0.0 bbPress (r3031) 281 282 * 282 283 * @param array $attr … … 310 311 * and return to ensure that post/page contents are displayed first. 311 312 * 312 * @since bbPress (r3031)313 * @since 2.0.0 bbPress (r3031) 313 314 * 314 315 * @param array $attr … … 376 377 * <div id="bbpress-forums"></div> which will need to be sorted out later. 377 378 * 378 * @since bbPress (r3031)379 * @since 2.0.0 bbPress (r3031) 379 380 * 380 381 * @param array $attr … … 431 432 * and return to ensure that post/page contents are displayed first. 432 433 * 433 * @since bbPress (r3031)434 * @since 2.0.0 bbPress (r3031) 434 435 * 435 436 * @param array $attr … … 493 494 * post/page contents are displayed first. 494 495 * 495 * @since bbPress (r3031)496 * @since 2.0.0 bbPress (r3031) 496 497 * 497 498 * @uses get_template_part() … … 515 516 * ensure that post/page contents are displayed first. 516 517 * 517 * @since bbPress (r3110)518 * @since 2.0.0 bbPress (r3110) 518 519 * 519 520 * @return string … … 543 544 * and return to ensure that post/page contents are displayed first. 544 545 * 545 * @since bbPress (r3110)546 * @since 2.0.0 bbPress (r3110) 546 547 * 547 548 * @param array $attr … … 582 583 * and return to ensure that post/page contents are displayed first. 583 584 * 584 * @since bbPress (r3346)585 * @since 2.0.0 bbPress (r3346) 585 586 * 586 587 * @param array $attr … … 610 611 * ensure that post/page contents are displayed first. 611 612 * 612 * @since bbPress (r3031)613 * @since 2.0.0 bbPress (r3031) 613 614 * 614 615 * @param array $attr … … 653 654 * post/page contents are displayed first. 654 655 * 655 * @since bbPress (r4585)656 * @since 2.3.0 bbPress (r4585) 656 657 * 657 658 * @uses get_template_part() … … 678 679 * ensure that post/page contents are displayed first. 679 680 * 680 * @since bbPress (r4579)681 * @since 2.3.0 bbPress (r4579) 681 682 * 682 683 * @param array $attr … … 726 727 * Display a login form 727 728 * 728 * @since bbPress (r3302)729 * @since 2.0.0 bbPress (r3302) 729 730 * 730 731 * @return string … … 752 753 * Display a register form 753 754 * 754 * @since bbPress (r3302)755 * @since 2.0.0 bbPress (r3302) 755 756 * 756 757 * @return string … … 778 779 * Display a lost password form 779 780 * 780 * @since bbPress (r3302)781 * @since 2.0.0 bbPress (r3302) 781 782 * 782 783 * @return string … … 806 807 * Display forum statistics 807 808 * 808 * @since bbPress (r4509)809 * @since 2.3.0 bbPress (r4509) 809 810 * 810 811 * @return shring … … 828 829 * Display a breadcrumb 829 830 * 830 * @since bbPress (r3302)831 * @since 2.0.0 bbPress (r3302) 831 832 * 832 833 * @return string … … 852 853 * Filter the query for the topic index 853 854 * 854 * @since bbPress (r3637)855 * @since 2.1.0 bbPress (r3637) 855 856 * 856 857 * @param array $args … … 867 868 * Filter the query for topic tags 868 869 * 869 * @since bbPress (r3637)870 * @since 2.1.0 bbPress (r3637) 870 871 * 871 872 * @param array $args
Note: See TracChangeset
for help on using the changeset viewer.