Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/13/2015 02:02:56 AM (10 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the Core component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/admin/bp-core-admin-settings.php

    r10012 r10108  
    11<?php
    2 
    32/**
    43 * BuddyPress Admin Settings.
     
    87 */
    98
    10 // Exit if accessed directly
     9// Exit if accessed directly.
    1110defined( 'ABSPATH' ) || exit;
    1211
     
    1413 * Main settings section description for the settings page.
    1514 *
    16  * @since BuddyPress (1.6.0)
     15 * @since 1.6.0
    1716 */
    1817function bp_admin_setting_callback_main_section() { }
     
    2120 * Admin bar for logged out users setting field.
    2221 *
    23  * @since BuddyPress (1.6.0)
     22 * @since 1.6.0
    2423 *
    2524 * @uses bp_form_option() To output the option value.
     
    3736 * Allow members to delete their accounts setting field.
    3837 *
    39  * @since BuddyPress (1.6.0)
     38 * @since 1.6.0
    4039 *
    4140 * @uses checked() To display the checked attribute.
     
    5554 * Groups settings section description for the settings page.
    5655 *
    57  * @since BuddyPress (1.6.0)
     56 * @since 1.6.0
    5857 */
    5958function bp_admin_setting_callback_activity_section() { }
     
    6261 * Allow Akismet setting field.
    6362 *
    64  * @since BuddyPress (1.6.0)
     63 * @since 1.6.0
    6564 *
    6665 * @uses checked() To display the checked attribute.
     
    7877 * Allow activity comments on blog posts and forum posts.
    7978 *
    80  * @since BuddyPress (1.6.0)
     79 * @since 1.6.0
    8180 */
    8281function bp_admin_setting_callback_blogforum_comments() {
     
    9291 * Allow Heartbeat to refresh activity stream.
    9392 *
    94  * @since BuddyPress (2.0.0)
     93 * @since 2.0.0
    9594 */
    9695function bp_admin_setting_callback_heartbeat() {
     
    110109 * function to flip the boolean before saving the intval.
    111110 *
    112  * @since BuddyPress (1.6.0)
     111 * @since 1.6.0
    113112 *
    114113 * @param bool $value
     
    125124 * Profile settings section description for the settings page.
    126125 *
    127  * @since BuddyPress (1.6.0)
     126 * @since 1.6.0
    128127 */
    129128function bp_admin_setting_callback_xprofile_section() { }
     
    132131 * Enable BP->WP profile syncing field.
    133132 *
    134  * @since BuddyPress (1.6.0)
     133 * @since 1.6.0
    135134 *
    136135 * @uses bp_form_option() To output the option value.
     
    148147 * Allow members to upload avatars field.
    149148 *
    150  * @since BuddyPress (1.6.0)
     149 * @since 1.6.0
    151150 *
    152151 * @uses checked() To display the checked attribute.
     
    166165 * Groups settings section description for the settings page.
    167166 *
    168  * @since BuddyPress (1.6.0)
     167 * @since 1.6.0
    169168 */
    170169function bp_admin_setting_callback_groups_section() { }
     
    173172 * Allow all users to create groups field.
    174173 *
    175  * @since BuddyPress (1.6.0)
     174 * @since 1.6.0
    176175 *
    177176 * @uses checked() To display the checked attribute.
     
    190189 * 'Enable group avatars' field markup.
    191190 *
    192  * @since BuddyPress (2.3.0)
     191 * @since 2.3.0
    193192 */
    194193function bp_admin_setting_callback_group_avatar_uploads() {
     
    204203 * Forums settings section description for the settings page.
    205204 *
    206  * @since BuddyPress (1.6.0)
     205 * @since 1.6.0
    207206 */
    208207function bp_admin_setting_callback_bbpress_section() { }
     
    211210 * bb-config.php location field.
    212211 *
    213  * @since BuddyPress (1.6.0)
     212 * @since 1.6.0
    214213 * @uses checked() To display the checked attribute.
    215214 * @uses bp_get_option() To get the config location.
     
    240239 * The main settings page
    241240 *
    242  * @since BuddyPress (1.6.0)
     241 * @since 1.6.0
    243242 *
    244243 * @uses screen_icon() To display the screen icon.
     
    277276 * Save our settings.
    278277 *
    279  * @since BuddyPress (1.6.0)
     278 * @since 1.6.0
    280279 */
    281280function bp_core_admin_settings_save() {
     
    324323 * Output settings API option.
    325324 *
    326  * @since BuddyPress (1.6.0)
     325 * @since 1.6.0
    327326 *
    328327 * @uses bp_get_bp_form_option()
     
    338337     * Return settings API option
    339338     *
    340      * @since BuddyPress (1.6.0)
     339     * @since 1.6.0
    341340     *
    342341     * @uses bp_get_option()
     
    361360             * Filters the slug value in the form field.
    362361             *
    363              * @since BuddyPress (1.6.0)
     362             * @since 1.6.0
    364363             *
    365364             * @param string $value Value being returned for the requested option.
     
    377376         * Filters the settings API option.
    378377         *
    379          * @since BuddyPress (1.6.0)
     378         * @since 1.6.0
    380379         *
    381380         * @param string $value  Value being returned for the requested option.
Note: See TracChangeset for help on using the changeset viewer.