Changeset 31539 for trunk/src/wp-includes/class-wp-customize-control.php
- Timestamp:
- 02/25/2015 07:55:55 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-control.php
r31533 r31539 1 1 <?php 2 2 /** 3 * Customize Control Class3 * WordPress Customize Control classes 4 4 * 5 5 * @package WordPress 6 6 * @subpackage Customize 7 * @since 3.4.0 8 */ 9 10 /** 11 * Customize Control class. 12 * 7 13 * @since 3.4.0 8 14 */ … … 538 544 539 545 /** 540 * Customize Color Control Class 541 * 542 * @package WordPress 543 * @subpackage Customize 546 * Customize Color Control class. 547 * 544 548 * @since 3.4.0 549 * 550 * @see WP_Customize_Control 545 551 */ 546 552 class WP_Customize_Color_Control extends WP_Customize_Control { … … 633 639 634 640 /** 635 * Customize Upload Control Class 636 * 637 * @package WordPress 638 * @subpackage Customize 641 * Customize Upload Control class. 642 * 639 643 * @since 3.4.0 644 * 645 * @see WP_Customize_Control 640 646 */ 641 647 class WP_Customize_Upload_Control extends WP_Customize_Control { … … 804 810 805 811 /** 806 * Customize Image Control Class 807 * 808 * @package WordPress 809 * @subpackage Customize 812 * Customize Image Control class. 813 * 810 814 * @since 3.4.0 815 * 816 * @see WP_Customize_Upload_Control 811 817 */ 812 818 class WP_Customize_Image_Control extends WP_Customize_Upload_Control { … … 873 879 874 880 /** 875 * Customize Background Image Control Class 876 * 877 * @package WordPress 878 * @subpackage Customize 881 * Customize Background Image Control class. 882 * 879 883 * @since 3.4.0 884 * 885 * @see WP_Customize_Image_Control 880 886 */ 881 887 class WP_Customize_Background_Image_Control extends WP_Customize_Image_Control { … … 913 919 } 914 920 921 /** 922 * Customize Header Image Control class. 923 * 924 * @since 3.4.0 925 * 926 * @see WP_Customize_Image_Control 927 */ 915 928 class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control { 916 929 public $type = 'header'; … … 1102 1115 1103 1116 /** 1104 * Customize Theme Control Class 1105 * 1106 * @package WordPress 1107 * @subpackage Customize 1117 * Customize Theme Control class. 1118 * 1108 1119 * @since 4.2.0 1120 * 1121 * @see WP_Customize_Control 1109 1122 */ 1110 1123 class WP_Customize_Theme_Control extends WP_Customize_Control { … … 1166 1179 1167 1180 /** 1168 * Customize New Theme Control Class 1169 * 1170 * @package WordPress 1171 * @subpackage Customize 1181 * Customize New Theme Control class. 1182 * 1172 1183 * @since 4.2.0 1184 * 1185 * @see WP_Customize_Control 1173 1186 */ 1174 1187 class WP_Customize_New_Theme_Control extends WP_Customize_Control { … … 1197 1210 1198 1211 /** 1199 * Widget Area Customize Control Class1212 * Widget Area Customize Control class. 1200 1213 * 1201 1214 * @since 3.9.0 1215 * 1216 * @see WP_Customize_Control 1202 1217 */ 1203 1218 class WP_Widget_Area_Customize_Control extends WP_Customize_Control { … … 1229 1244 1230 1245 /** 1231 * Widget Form Customize Control Class1246 * Widget Form Customize Control class. 1232 1247 * 1233 1248 * @since 3.9.0 1249 * 1250 * @see WP_Customize_Control 1234 1251 */ 1235 1252 class WP_Widget_Form_Customize_Control extends WP_Customize_Control { … … 1281 1298 } 1282 1299 } 1283
Note: See TracChangeset
for help on using the changeset viewer.