Make WordPress Core

Ticket #30315: 30315.5.diff

File 30315.5.diff, 1.1 KB (added by jazzs3quence, 11 years ago)

Adds some more @since tags

  • wp-includes/widgets.php

     
    131131         *
    132132         * This function should be used in form() methods to create id attributes for fields to be saved by update()
    133133         *
     134         * @since 2.8.0
     135         *
    134136         * @param string $field_name Field name
    135137         * @return string ID attribute for $field_name
    136138         */
     
    215217         *
    216218         * Finds the instance and calls {@see WP_Widget::widget()}.
    217219         *
     220         * @since 2.8.0
    218221         * @access public
    219222         *
    220223         * @param array     $args        Display arguments. See {@see WP_Widget::widget()} for information
     
    272275         *
    273276         * Do NOT over-ride this function.
    274277         *
     278         * @since 2.8.0
     279         *
    275280         * @param mixed $deprecated Not used.
    276281         */
    277282        public function update_callback( $deprecated = 1 ) {
     
    353358         * Generate the control form.
    354359         *
    355360         * Do NOT over-ride this function.
     361         *
     362         * @since 2.8.0
    356363         */
    357364        public function form_callback( $widget_args = 1 ) {
    358365                if ( is_numeric($widget_args) )