Changeset 30676
- Timestamp:
- 11/30/2014 11:32:31 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r30656 r30676 823 823 * 824 824 * @param WP_Customize_Manager $manager 825 * @param string $id 826 * @param array $args 825 827 */ 826 828 public function __construct( $manager, $id, $args = array() ) { … … 902 904 public $default_headers; 903 905 906 /** 907 * @param WP_Customize_Manager $manager 908 */ 904 909 public function __construct( $manager ) { 905 910 parent::__construct( $manager, 'header_image', array( -
trunk/src/wp-includes/class-wp-customize-manager.php
r30606 r30676 63 63 protected $registered_control_types = array(); 64 64 65 /** 65 /** 66 66 * $_POST values for Customize Settings. 67 67 * … … 404 404 * @since 3.4.0 405 405 * 406 * @param mixed$setting A WP_Customize_Setting derived object406 * @param WP_Customize_Setting $setting A WP_Customize_Setting derived object 407 407 * @return string $post_value Sanitized value 408 408 */ -
trunk/src/wp-includes/class-wp-customize-setting.php
r30656 r30676 169 169 * @since 3.4.0 170 170 * 171 * @return bool False if cap check fails or value isn't set.171 * @return false|null False if cap check fails or value isn't set. 172 172 */ 173 173 public final function save() { … … 295 295 * 296 296 * @param mixed $value The value to update. 297 * @return mixedThe result of saving the value.297 * @return bool|null The result of saving the value. 298 298 */ 299 299 protected function _update_option( $value ) { … … 470 470 * @param $root 471 471 * @param $keys 472 * @param $default A default value which is used as a fallback. Default is null.472 * @param mixed $default A default value which is used as a fallback. Default is null. 473 473 * @return mixed The requested value or the default value. 474 474 */ -
trunk/src/wp-includes/class-wp-customize-widgets.php
r30329 r30676 326 326 * @access public 327 327 * 328 * @param array $ sidebars_widgets328 * @param array $old_sidebars_widgets 329 329 */ 330 330 public function filter_customize_value_old_sidebars_widgets_data( $old_sidebars_widgets ) {
Note: See TracChangeset
for help on using the changeset viewer.