Ticket #22234: 22234.diff
File 22234.diff, 46.7 KB (added by , 12 years ago) |
---|
-
wp-includes/post-template.php
980 980 * @since 2.1.0 981 981 * @var string 982 982 */ 983 var$tree_type = 'page';983 public $tree_type = 'page'; 984 984 985 985 /** 986 986 * @see Walker::$db_fields … … 988 988 * @todo Decouple this. 989 989 * @var array 990 990 */ 991 var$db_fields = array ('parent' => 'post_parent', 'id' => 'ID');991 public $db_fields = array ('parent' => 'post_parent', 'id' => 'ID'); 992 992 993 993 /** 994 994 * @see Walker::start_lvl() … … 1088 1088 * @since 2.1.0 1089 1089 * @var string 1090 1090 */ 1091 var$tree_type = 'page';1091 public $tree_type = 'page'; 1092 1092 1093 1093 /** 1094 1094 * @see Walker::$db_fields … … 1096 1096 * @todo Decouple this 1097 1097 * @var array 1098 1098 */ 1099 var$db_fields = array ('parent' => 'post_parent', 'id' => 'ID');1099 public $db_fields = array ('parent' => 'post_parent', 'id' => 'ID'); 1100 1100 1101 1101 /** 1102 1102 * @see Walker::start_el() -
wp-includes/nav-menu-template.php
20 20 * @since 3.0.0 21 21 * @var string 22 22 */ 23 var$tree_type = array( 'post_type', 'taxonomy', 'custom' );23 public $tree_type = array( 'post_type', 'taxonomy', 'custom' ); 24 24 25 25 /** 26 26 * @see Walker::$db_fields … … 28 28 * @todo Decouple this. 29 29 * @var array 30 30 */ 31 var$db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' );31 public $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' ); 32 32 33 33 /** 34 34 * @see Walker::start_lvl() -
wp-includes/class-feed.php
16 16 } 17 17 18 18 class WP_Feed_Cache_Transient { 19 var$name;20 var$mod_name;21 var$lifetime = 43200; //Default lifetime in cache of 12 hours19 public $name; 20 public $mod_name; 21 public $lifetime = 43200; //Default lifetime in cache of 12 hours 22 22 23 23 function __construct($location, $filename, $extension) { 24 24 $this->name = 'feed_' . $filename; -
wp-includes/class-http.php
1440 1440 * @since 2.8.0 1441 1441 * @var string 1442 1442 */ 1443 var$name;1443 public $name; 1444 1444 1445 1445 /** 1446 1446 * Cookie value. … … 1448 1448 * @since 2.8.0 1449 1449 * @var string 1450 1450 */ 1451 var$value;1451 public $value; 1452 1452 1453 1453 /** 1454 1454 * When the cookie expires. … … 1456 1456 * @since 2.8.0 1457 1457 * @var string 1458 1458 */ 1459 var$expires;1459 public $expires; 1460 1460 1461 1461 /** 1462 1462 * Cookie URL path. … … 1464 1464 * @since 2.8.0 1465 1465 * @var string 1466 1466 */ 1467 var$path;1467 public $path; 1468 1468 1469 1469 /** 1470 1470 * Cookie Domain. … … 1472 1472 * @since 2.8.0 1473 1473 * @var string 1474 1474 */ 1475 var$domain;1475 public $domain; 1476 1476 1477 1477 /** 1478 1478 * Sets up this cookie object. -
wp-includes/pomo/mo.php
13 13 if ( !class_exists( 'MO' ) ): 14 14 class MO extends Gettext_Translations { 15 15 16 var$_nplurals = 2;16 public $_nplurals = 2; 17 17 18 18 /** 19 19 * Fills up with the entries from MO file $filename -
wp-includes/pomo/po.php
19 19 if ( !class_exists( 'PO' ) ): 20 20 class PO extends Gettext_Translations { 21 21 22 var$comments_before_headers = '';22 public $comments_before_headers = ''; 23 23 24 24 /** 25 25 * Exports headers to a PO entry -
wp-includes/pomo/streams.php
11 11 if ( !class_exists( 'POMO_Reader' ) ): 12 12 class POMO_Reader { 13 13 14 var$endian = 'little';15 var$_post = '';14 public $endian = 'little'; 15 public $_post = ''; 16 16 17 17 function POMO_Reader() { 18 18 $this->is_overloaded = ((ini_get("mbstring.func_overload") & 2) != 0) && function_exists('mb_substr'); … … 149 149 */ 150 150 class POMO_StringReader extends POMO_Reader { 151 151 152 var$_str = '';152 public $_str = ''; 153 153 154 154 function POMO_StringReader($str = '') { 155 155 parent::POMO_Reader(); -
wp-includes/pomo/entry.php
18 18 * 19 19 * @var boolean 20 20 */ 21 var$is_plural = false;21 public $is_plural = false; 22 22 23 var$context = null;24 var$singular = null;25 var$plural = null;26 var$translations = array();27 var$translator_comments = '';28 var$extracted_comments = '';29 var$references = array();30 var$flags = array();23 public $context = null; 24 public $singular = null; 25 public $plural = null; 26 public $translations = array(); 27 public $translator_comments = ''; 28 public $extracted_comments = ''; 29 public $references = array(); 30 public $flags = array(); 31 31 32 32 /** 33 33 * @param array $args associative array, support following keys: -
wp-includes/pomo/translations.php
11 11 12 12 if ( !class_exists( 'Translations' ) ): 13 13 class Translations { 14 var$entries = array();15 var$headers = array();14 public $entries = array(); 15 public $headers = array(); 16 16 17 17 /** 18 18 * Add entry to the PO structure … … 232 232 * Provides the same interface as Translations, but doesn't do anything 233 233 */ 234 234 class NOOP_Translations { 235 var$entries = array();236 var$headers = array();235 public $entries = array(); 236 public $headers = array(); 237 237 238 238 function add_entry($entry) { 239 239 return true; -
wp-includes/comment.php
194 194 * Metadata query container 195 195 * 196 196 * @since 3.5.0 197 * @access public198 197 * @var object WP_Meta_Query 199 198 */ 200 var$meta_query = false;199 public $meta_query = false; 201 200 202 201 /** 203 202 * Execute the query -
wp-includes/class-wp-embed.php
7 7 * @since 2.9.0 8 8 */ 9 9 class WP_Embed { 10 var$handlers = array();11 var$post_ID;12 var$usecache = true;13 var$linkifunknown = true;10 public $handlers = array(); 11 public $post_ID; 12 public $usecache = true; 13 public $linkifunknown = true; 14 14 15 15 /** 16 16 * Constructor -
wp-includes/comment-template.php
1220 1220 * @since 2.7.0 1221 1221 * @var string 1222 1222 */ 1223 var$tree_type = 'comment';1223 public $tree_type = 'comment'; 1224 1224 1225 1225 /** 1226 1226 * @see Walker::$db_fields 1227 1227 * @since 2.7.0 1228 1228 * @var array 1229 1229 */ 1230 var$db_fields = array ('parent' => 'comment_parent', 'id' => 'comment_ID');1230 public $db_fields = array ('parent' => 'comment_parent', 'id' => 'comment_ID'); 1231 1231 1232 1232 /** 1233 1233 * @see Walker::start_lvl() -
wp-includes/class.wp-styles.php
17 17 * @since r74 18 18 */ 19 19 class WP_Styles extends WP_Dependencies { 20 var$base_url;21 var$content_url;22 var$default_version;23 var$text_direction = 'ltr';24 var$concat = '';25 var$concat_version = '';26 var$do_concat = false;27 var$print_html = '';28 var$print_code = '';29 var$default_dirs;20 public $base_url; 21 public $content_url; 22 public $default_version; 23 public $text_direction = 'ltr'; 24 public $concat = ''; 25 public $concat_version = ''; 26 public $do_concat = false; 27 public $print_html = ''; 28 public $print_code = ''; 29 public $default_dirs; 30 30 31 31 function __construct() { 32 32 do_action_ref_array( 'wp_default_styles', array(&$this) ); -
wp-includes/class.wp-dependencies.php
17 17 * @since r74 18 18 */ 19 19 class WP_Dependencies { 20 var$registered = array();21 var$queue = array();22 var$to_do = array();23 var$done = array();24 var$args = array();25 var$groups = array();26 var$group = 0;20 public $registered = array(); 21 public $queue = array(); 22 public $to_do = array(); 23 public $done = array(); 24 public $args = array(); 25 public $groups = array(); 26 public $group = 0; 27 27 28 28 /** 29 29 * Do the dependencies … … 238 238 } 239 239 240 240 class _WP_Dependency { 241 var$handle;242 var$src;243 var$deps = array();244 var$ver = false;245 var$args = null;241 public $handle; 242 public $src; 243 public $deps = array(); 244 public $ver = false; 245 public $args = null; 246 246 247 var$extra = array();247 public $extra = array(); 248 248 249 249 function __construct() { 250 250 @list( $this->handle, $this->src, $this->deps, $this->ver, $this->args ) = func_get_args(); -
wp-includes/user.php
318 318 * Query vars, after parsing 319 319 * 320 320 * @since 3.5.0 321 * @access public322 321 * @var array 323 322 */ 324 var$query_vars = array();323 public $query_vars = array(); 325 324 326 325 /** 327 326 * List of found user ids … … 342 341 var $total_users = 0; 343 342 344 343 // SQL clauses 345 var$query_fields;346 var$query_from;347 var$query_where;348 var$query_orderby;349 var$query_limit;344 public $query_fields; 345 public $query_from; 346 public $query_where; 347 public $query_orderby; 348 public $query_limit; 350 349 351 350 /** 352 351 * PHP5 constructor -
wp-includes/class.wp-scripts.php
17 17 * @since r16 18 18 */ 19 19 class WP_Scripts extends WP_Dependencies { 20 var$base_url; // Full URL with trailing slash21 var$content_url;22 var$default_version;23 var$in_footer = array();24 var$concat = '';25 var$concat_version = '';26 var$do_concat = false;27 var$print_html = '';28 var$print_code = '';29 var$ext_handles = '';30 var$ext_version = '';31 var$default_dirs;20 public $base_url; // Full URL with trailing slash 21 public $content_url; 22 public $default_version; 23 public $in_footer = array(); 24 public $concat = ''; 25 public $concat_version = ''; 26 public $do_concat = false; 27 public $print_html = ''; 28 public $print_code = ''; 29 public $ext_handles = ''; 30 public $ext_version = ''; 31 public $default_dirs; 32 32 33 33 function __construct() { 34 34 $this->init(); -
wp-includes/cache.php
282 282 * Amount of times the cache did not have the request in cache 283 283 * 284 284 * @var int 285 * @access public286 285 * @since 2.0.0 287 286 */ 288 var$cache_misses = 0;287 public $cache_misses = 0; 289 288 290 289 /** 291 290 * List of global groups -
wp-includes/query.php
834 834 * Query vars set by the user 835 835 * 836 836 * @since 1.5.0 837 * @access public838 837 * @var array 839 838 */ 840 var$query;839 public $query; 841 840 842 841 /** 843 842 * Query vars, after parsing 844 843 * 845 844 * @since 1.5.0 846 * @access public847 845 * @var array 848 846 */ 849 var$query_vars = array();847 public $query_vars = array(); 850 848 851 849 /** 852 850 * Taxonomy query, as passed to get_tax_sql() 853 851 * 854 852 * @since 3.1.0 855 * @access public856 853 * @var object WP_Tax_Query 857 854 */ 858 var$tax_query;855 public $tax_query; 859 856 860 857 /** 861 858 * Metadata query container 862 859 * 863 860 * @since 3.2.0 864 * @access public865 861 * @var object WP_Meta_Query 866 862 */ 867 var$meta_query = false;863 public $meta_query = false; 868 864 869 865 /** 870 866 * Holds the data for a single object that is queried. … … 872 868 * Holds the contents of a post, page, category, attachment. 873 869 * 874 870 * @since 1.5.0 875 * @access public876 871 * @var object|array 877 872 */ 878 var$queried_object;873 public $queried_object; 879 874 880 875 /** 881 876 * The ID of the queried object. 882 877 * 883 878 * @since 1.5.0 884 * @access public885 879 * @var int 886 880 */ 887 var$queried_object_id;881 public $queried_object_id; 888 882 889 883 /** 890 884 * Get post database query. 891 885 * 892 886 * @since 2.0.1 893 * @access public894 887 * @var string 895 888 */ 896 var$request;889 public $request; 897 890 898 891 /** 899 892 * List of posts. 900 893 * 901 894 * @since 1.5.0 902 * @access public903 895 * @var array 904 896 */ 905 var$posts;897 public $posts; 906 898 907 899 /** 908 900 * The amount of posts for the current query. 909 901 * 910 902 * @since 1.5.0 911 * @access public912 903 * @var int 913 904 */ 914 var$post_count = 0;905 public $post_count = 0; 915 906 916 907 /** 917 908 * Index of the current item in the loop. 918 909 * 919 910 * @since 1.5.0 920 * @access public921 911 * @var int 922 912 */ 923 var$current_post = -1;913 public $current_post = -1; 924 914 925 915 /** 926 916 * Whether the loop has started and the caller is in the loop. 927 917 * 928 918 * @since 2.0.0 929 * @access public930 919 * @var bool 931 920 */ 932 var$in_the_loop = false;921 public $in_the_loop = false; 933 922 934 923 /** 935 924 * The current post ID. 936 925 * 937 926 * @since 1.5.0 938 * @access public939 927 * @var object 940 928 */ 941 var$post;929 public $post; 942 930 943 931 /** 944 932 * The list of comments for current post. 945 933 * 946 934 * @since 2.2.0 947 * @access public948 935 * @var array 949 936 */ 950 var$comments;937 public $comments; 951 938 952 939 /** 953 940 * The amount of comments for the posts. 954 941 * 955 942 * @since 2.2.0 956 * @access public957 943 * @var int 958 944 */ 959 var$comment_count = 0;945 public $comment_count = 0; 960 946 961 947 /** 962 948 * The index of the comment in the comment loop. 963 949 * 964 950 * @since 2.2.0 965 * @access public966 951 * @var int 967 952 */ 968 var$current_comment = -1;953 public $current_comment = -1; 969 954 970 955 /** 971 956 * Current comment ID. 972 957 * 973 958 * @since 2.2.0 974 * @access public975 959 * @var int 976 960 */ 977 var$comment;961 public $comment; 978 962 979 963 /** 980 964 * The amount of found posts for the current query. … … 982 966 * If limit clause was not used, equals $post_count. 983 967 * 984 968 * @since 2.1.0 985 * @access public986 969 * @var int 987 970 */ 988 var$found_posts = 0;971 public $found_posts = 0; 989 972 990 973 /** 991 974 * The amount of pages. 992 975 * 993 976 * @since 2.1.0 994 * @access public995 977 * @var int 996 978 */ 997 var$max_num_pages = 0;979 public $max_num_pages = 0; 998 980 999 981 /** 1000 982 * The amount of comment pages. … … 1003 985 * @access public 1004 986 * @var int 1005 987 */ 1006 var$max_num_comment_pages = 0;988 public $max_num_comment_pages = 0; 1007 989 1008 990 /** 1009 991 * Set if query is single post. 1010 992 * 1011 993 * @since 1.5.0 1012 * @access public1013 994 * @var bool 1014 995 */ 1015 var$is_single = false;996 public $is_single = false; 1016 997 1017 998 /** 1018 999 * Set if query is preview of blog. 1019 1000 * 1020 1001 * @since 2.0.0 1021 * @access public1022 1002 * @var bool 1023 1003 */ 1024 var$is_preview = false;1004 public $is_preview = false; 1025 1005 1026 1006 /** 1027 1007 * Set if query returns a page. 1028 1008 * 1029 1009 * @since 1.5.0 1030 * @access public1031 1010 * @var bool 1032 1011 */ 1033 var$is_page = false;1012 public $is_page = false; 1034 1013 1035 1014 /** 1036 1015 * Set if query is an archive list. 1037 1016 * 1038 1017 * @since 1.5.0 1039 * @access public1040 1018 * @var bool 1041 1019 */ 1042 var$is_archive = false;1020 public $is_archive = false; 1043 1021 1044 1022 /** 1045 1023 * Set if query is part of a date. 1046 1024 * 1047 1025 * @since 1.5.0 1048 * @access public1049 1026 * @var bool 1050 1027 */ 1051 var$is_date = false;1028 public $is_date = false; 1052 1029 1053 1030 /** 1054 1031 * Set if query contains a year. 1055 1032 * 1056 1033 * @since 1.5.0 1057 * @access public1058 1034 * @var bool 1059 1035 */ 1060 var$is_year = false;1036 public $is_year = false; 1061 1037 1062 1038 /** 1063 1039 * Set if query contains a month. 1064 1040 * 1065 1041 * @since 1.5.0 1066 * @access public1067 1042 * @var bool 1068 1043 */ 1069 var$is_month = false;1044 public $is_month = false; 1070 1045 1071 1046 /** 1072 1047 * Set if query contains a day. 1073 1048 * 1074 1049 * @since 1.5.0 1075 * @access public1076 1050 * @var bool 1077 1051 */ 1078 var$is_day = false;1052 public $is_day = false; 1079 1053 1080 1054 /** 1081 1055 * Set if query contains time. 1082 1056 * 1083 1057 * @since 1.5.0 1084 * @access public1085 1058 * @var bool 1086 1059 */ 1087 var$is_time = false;1060 public $is_time = false; 1088 1061 1089 1062 /** 1090 1063 * Set if query contains an author. 1091 1064 * 1092 1065 * @since 1.5.0 1093 * @access public1094 1066 * @var bool 1095 1067 */ 1096 var$is_author = false;1068 public $is_author = false; 1097 1069 1098 1070 /** 1099 1071 * Set if query contains category. 1100 1072 * 1101 1073 * @since 1.5.0 1102 * @access public1103 1074 * @var bool 1104 1075 */ 1105 var$is_category = false;1076 public $is_category = false; 1106 1077 1107 1078 /** 1108 1079 * Set if query contains tag. 1109 1080 * 1110 1081 * @since 2.3.0 1111 * @access public1112 1082 * @var bool 1113 1083 */ 1114 var$is_tag = false;1084 public $is_tag = false; 1115 1085 1116 1086 /** 1117 1087 * Set if query contains taxonomy. 1118 1088 * 1119 1089 * @since 2.5.0 1120 * @access public1121 1090 * @var bool 1122 1091 */ 1123 var$is_tax = false;1092 public $is_tax = false; 1124 1093 1125 1094 /** 1126 1095 * Set if query was part of a search result. 1127 1096 * 1128 1097 * @since 1.5.0 1129 * @access public1130 1098 * @var bool 1131 1099 */ 1132 var$is_search = false;1100 public $is_search = false; 1133 1101 1134 1102 /** 1135 1103 * Set if query is feed display. 1136 1104 * 1137 1105 * @since 1.5.0 1138 * @access public1139 1106 * @var bool 1140 1107 */ 1141 var$is_feed = false;1108 public $is_feed = false; 1142 1109 1143 1110 /** 1144 1111 * Set if query is comment feed display. 1145 1112 * 1146 1113 * @since 2.2.0 1147 * @access public1148 1114 * @var bool 1149 1115 */ 1150 var$is_comment_feed = false;1116 public $is_comment_feed = false; 1151 1117 1152 1118 /** 1153 1119 * Set if query is trackback. 1154 1120 * 1155 1121 * @since 1.5.0 1156 * @access public1157 1122 * @var bool 1158 1123 */ 1159 var$is_trackback = false;1124 public $is_trackback = false; 1160 1125 1161 1126 /** 1162 1127 * Set if query is blog homepage. 1163 1128 * 1164 1129 * @since 1.5.0 1165 * @access public1166 1130 * @var bool 1167 1131 */ 1168 var$is_home = false;1132 public $is_home = false; 1169 1133 1170 1134 /** 1171 1135 * Set if query couldn't found anything. 1172 1136 * 1173 1137 * @since 1.5.0 1174 * @access public1175 1138 * @var bool 1176 1139 */ 1177 var$is_404 = false;1140 public $is_404 = false; 1178 1141 1179 1142 /** 1180 1143 * Set if query is within comments popup window. 1181 1144 * 1182 1145 * @since 1.5.0 1183 * @access public1184 1146 * @var bool 1185 1147 */ 1186 var$is_comments_popup = false;1148 public $is_comments_popup = false; 1187 1149 1188 1150 /** 1189 1151 * Set if query is paged 1190 1152 * 1191 1153 * @since 1.5.0 1192 * @access public1193 1154 * @var bool 1194 1155 */ 1195 var$is_paged = false;1156 public $is_paged = false; 1196 1157 1197 1158 /** 1198 1159 * Set if query is part of administration page. 1199 1160 * 1200 1161 * @since 1.5.0 1201 * @access public1202 1162 * @var bool 1203 1163 */ 1204 var$is_admin = false;1164 public $is_admin = false; 1205 1165 1206 1166 /** 1207 1167 * Set if query is an attachment. 1208 1168 * 1209 1169 * @since 2.0.0 1210 * @access public1211 1170 * @var bool 1212 1171 */ 1213 var$is_attachment = false;1172 public $is_attachment = false; 1214 1173 1215 1174 /** 1216 1175 * Set if is single, is a page, or is an attachment. 1217 1176 * 1218 1177 * @since 2.1.0 1219 * @access public1220 1178 * @var bool 1221 1179 */ 1222 var$is_singular = false;1180 public $is_singular = false; 1223 1181 1224 1182 /** 1225 1183 * Set if query is for robots. 1226 1184 * 1227 1185 * @since 2.1.0 1228 * @access public1229 1186 * @var bool 1230 1187 */ 1231 var$is_robots = false;1188 public $is_robots = false; 1232 1189 1233 1190 /** 1234 1191 * Set if query contains posts. … … 1236 1193 * Basically, the homepage if the option isn't set for the static homepage. 1237 1194 * 1238 1195 * @since 2.1.0 1239 * @access public1240 1196 * @var bool 1241 1197 */ 1242 var$is_posts_page = false;1198 public $is_posts_page = false; 1243 1199 1244 1200 /** 1245 1201 * Set if query is for a post type archive. 1246 1202 * 1247 1203 * @since 3.1.0 1248 * @access public1249 1204 * @var bool 1250 1205 */ 1251 var$is_post_type_archive = false;1206 public $is_post_type_archive = false; 1252 1207 1253 1208 /** 1254 1209 * Stores the ->query_vars state like md5(serialize( $this->query_vars ) ) so we know … … 1272 1227 * Set if post thumbnails are cached 1273 1228 * 1274 1229 * @since 3.2.0 1275 * @access public1276 1230 * @var bool 1277 1231 */ 1278 var$thumbnails_cached = false;1232 public $thumbnails_cached = false; 1279 1233 1280 1234 /** 1281 1235 * Resets query flags to false. -
wp-includes/wp-db.php
74 74 * @since 2.5.0 75 75 * @var string 76 76 */ 77 var$last_error = '';77 public $last_error = ''; 78 78 79 79 /** 80 80 * Amount of queries made … … 107 107 * The ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT). 108 108 * 109 109 * @since 0.71 110 * @access public111 110 * @var int 112 111 */ 113 var$insert_id = 0;112 public $insert_id = 0; 114 113 115 114 /** 116 115 * Last query made … … 186 185 * @access public 187 186 * @var int 188 187 */ 189 var$blogid = 0;188 public $blogid = 0; 190 189 191 190 /** 192 191 * {@internal Missing Description}} … … 195 194 * @access public 196 195 * @var int 197 196 */ 198 var$siteid = 0;197 public $siteid = 0; 199 198 200 199 /** 201 200 * List of WordPress per-blog tables … … 245 244 * WordPress Comments table 246 245 * 247 246 * @since 1.5.0 248 * @access public249 247 * @var string 250 248 */ 251 var$comments;249 public $comments; 252 250 253 251 /** 254 252 * WordPress Comment Metadata table 255 253 * 256 254 * @since 2.9.0 257 * @access public258 255 * @var string 259 256 */ 260 var$commentmeta;257 public $commentmeta; 261 258 262 259 /** 263 260 * WordPress Links table 264 261 * 265 262 * @since 1.5.0 266 * @access public267 263 * @var string 268 264 */ 269 var$links;265 public $links; 270 266 271 267 /** 272 268 * WordPress Options table 273 269 * 274 270 * @since 1.5.0 275 * @access public276 271 * @var string 277 272 */ 278 var$options;273 public $options; 279 274 280 275 /** 281 276 * WordPress Post Metadata table 282 277 * 283 278 * @since 1.5.0 284 * @access public285 279 * @var string 286 280 */ 287 var$postmeta;281 public $postmeta; 288 282 289 283 /** 290 284 * WordPress Posts table 291 285 * 292 286 * @since 1.5.0 293 * @access public294 287 * @var string 295 288 */ 296 var$posts;289 public $posts; 297 290 298 291 /** 299 292 * WordPress Terms table 300 293 * 301 294 * @since 2.3.0 302 * @access public303 295 * @var string 304 296 */ 305 var$terms;297 public $terms; 306 298 307 299 /** 308 300 * WordPress Term Relationships table 309 301 * 310 302 * @since 2.3.0 311 * @access public312 303 * @var string 313 304 */ 314 var$term_relationships;305 public $term_relationships; 315 306 316 307 /** 317 308 * WordPress Term Taxonomy table 318 309 * 319 310 * @since 2.3.0 320 * @access public321 311 * @var string 322 312 */ 323 var$term_taxonomy;313 public $term_taxonomy; 324 314 325 315 /* 326 316 * Global and Multisite tables … … 330 320 * WordPress User Metadata table 331 321 * 332 322 * @since 2.3.0 333 * @access public334 323 * @var string 335 324 */ 336 var$usermeta;325 public $usermeta; 337 326 338 327 /** 339 328 * WordPress Users table 340 329 * 341 330 * @since 1.5.0 342 * @access public343 331 * @var string 344 332 */ 345 var$users;333 public $users; 346 334 347 335 /** 348 336 * Multisite Blogs table 349 337 * 350 338 * @since 3.0.0 351 * @access public352 339 * @var string 353 340 */ 354 var$blogs;341 public $blogs; 355 342 356 343 /** 357 344 * Multisite Blog Versions table 358 345 * 359 346 * @since 3.0.0 360 * @access public361 347 * @var string 362 348 */ 363 var$blog_versions;349 public $blog_versions; 364 350 365 351 /** 366 352 * Multisite Registration Log table 367 353 * 368 354 * @since 3.0.0 369 * @access public370 355 * @var string 371 356 */ 372 var$registration_log;357 public $registration_log; 373 358 374 359 /** 375 360 * Multisite Signups table 376 361 * 377 362 * @since 3.0.0 378 * @access public379 363 * @var string 380 364 */ 381 var$signups;365 public $signups; 382 366 383 367 /** 384 368 * Multisite Sites table 385 369 * 386 370 * @since 3.0.0 387 * @access public388 371 * @var string 389 372 */ 390 var$site;373 public $site; 391 374 392 375 /** 393 376 * Multisite Sitewide Terms table 394 377 * 395 378 * @since 3.0.0 396 * @access public397 379 * @var string 398 380 */ 399 var$sitecategories;381 public $sitecategories; 400 382 401 383 /** 402 384 * Multisite Site Metadata table 403 385 * 404 386 * @since 3.0.0 405 * @access public406 387 * @var string 407 388 */ 408 var$sitemeta;389 public $sitemeta; 409 390 410 391 /** 411 392 * Format specifiers for DB columns. Columns not listed here default to %s. Initialized during WP load. … … 418 399 * @see wpdb::update() 419 400 * @see wpdb::delete() 420 401 * @see wp_set_wpdb_vars() 421 * @access public422 402 * @var array 423 403 */ 424 var$field_types = array();404 public $field_types = array(); 425 405 426 406 /** 427 407 * Database table columns charset 428 408 * 429 409 * @since 2.2.0 430 * @access public431 410 * @var string 432 411 */ 433 var$charset;412 public $charset; 434 413 435 414 /** 436 415 * Database table columns collate 437 416 * 438 417 * @since 2.2.0 439 * @access public440 418 * @var string 441 419 */ 442 var$collate;420 public $collate; 443 421 444 422 /** 445 423 * Whether to use mysql_real_escape_string 446 424 * 447 425 * @since 2.8.0 448 * @access public449 426 * @var bool 450 427 */ 451 var$real_escape = false;428 public $real_escape = false; 452 429 453 430 /** 454 431 * Database Username … … 499 476 * A textual description of the last query/get_row/get_var call 500 477 * 501 478 * @since 3.0.0 502 * @access public503 479 * @var string 504 480 */ 505 var$func_call;481 public $func_call; 506 482 507 483 /** 508 484 * Whether MySQL is used as the database engine. … … 513 489 * will force the checks to occur. 514 490 * 515 491 * @since 3.3.0 516 * @access public517 492 * @var bool 518 493 */ 519 494 public $is_mysql = null; -
wp-includes/class-wp-walker.php
18 18 * 19 19 * @since 2.1.0 20 20 * @var string 21 * @access public22 21 */ 23 var$tree_type;22 public $tree_type; 24 23 25 24 /** 26 25 * DB fields to use. -
wp-includes/rewrite.php
542 542 * The name of the index file which is the entry point to all requests. 543 543 * 544 544 * @since 1.5.0 545 * @access public546 545 * @var string 547 546 */ 548 var$index = 'index.php';547 public $index = 'index.php'; 549 548 550 549 /** 551 550 * Variable name to use for regex matches in the rewritten query. … … 625 624 * 626 625 * @see WP_Rewrite::mod_rewrite_rules() 627 626 * @since 2.0.0 628 * @access public629 627 * @var bool 630 628 */ 631 var$use_verbose_rules = false;629 public $use_verbose_rules = false; 632 630 633 631 /** 634 632 * Could post permalinks be confused with those of pages? … … 643 641 * @link http://core.trac.wordpress.org/ticket/16687 644 642 * @see WP_Rewrite::init() 645 643 * @since 2.5.0 646 * @access public647 644 * @var bool 648 645 */ 649 var$use_verbose_page_rules = true;646 public $use_verbose_page_rules = true; 650 647 651 648 /** 652 649 * Rewrite tags that can be used in permalink structures. -
wp-includes/atomlib.php
19 19 /** 20 20 * Stores Links 21 21 * @var array 22 * @access public23 22 */ 24 var$links = array();23 public $links = array(); 25 24 /** 26 25 * Stores Categories 27 26 * @var array 28 * @access public29 27 */ 30 var$categories = array();28 public $categories = array(); 31 29 /** 32 30 * Stores Entries 33 31 * 34 32 * @var array 35 * @access public36 33 */ 37 var$entries = array();34 public $entries = array(); 38 35 } 39 36 40 37 /** … … 48 45 * @var array 49 46 * @access public 50 47 */ 51 var$links = array();48 public $links = array(); 52 49 /** 53 50 * Stores Categories 54 51 * @var array 55 52 * @access public 56 53 */ 57 var$categories = array();54 public $categories = array(); 58 55 } 59 56 60 57 /** … … 64 61 */ 65 62 class AtomParser { 66 63 67 var$NS = 'http://www.w3.org/2005/Atom';68 var$ATOM_CONTENT_ELEMENTS = array('content','summary','title','subtitle','rights');69 var$ATOM_SIMPLE_ELEMENTS = array('id','updated','published','draft');64 public $NS = 'http://www.w3.org/2005/Atom'; 65 public $ATOM_CONTENT_ELEMENTS = array('content','summary','title','subtitle','rights'); 66 public $ATOM_SIMPLE_ELEMENTS = array('id','updated','published','draft'); 70 67 71 var$debug = false;68 public $debug = false; 72 69 73 var$depth = 0;74 var$indent = 2;75 var$in_content;76 var$ns_contexts = array();77 var$ns_decls = array();78 var$content_ns_decls = array();79 var$content_ns_contexts = array();80 var$is_xhtml = false;81 var$is_html = false;82 var$is_text = true;83 var$skipped_div = false;70 public $depth = 0; 71 public $indent = 2; 72 public $in_content; 73 public $ns_contexts = array(); 74 public $ns_decls = array(); 75 public $content_ns_decls = array(); 76 public $content_ns_contexts = array(); 77 public $is_xhtml = false; 78 public $is_html = false; 79 public $is_text = true; 80 public $skipped_div = false; 84 81 85 var$FILE = "php://input";82 public $FILE = "php://input"; 86 83 87 var$feed;88 var$current;84 public $feed; 85 public $current; 89 86 90 87 function AtomParser() { 91 88 -
wp-includes/class-wp.php
12 12 * Long list of public query variables. 13 13 * 14 14 * @since 2.0.0 15 * @access public16 15 * @var array 17 16 */ 18 var$public_query_vars = array('m', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'comments_popup', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type');17 public $public_query_vars = array('m', 'p', 'posts', 'w', 'cat', 'withcomments', 'withoutcomments', 's', 'search', 'exact', 'sentence', 'calendar', 'page', 'paged', 'more', 'tb', 'pb', 'author', 'order', 'orderby', 'year', 'monthnum', 'day', 'hour', 'minute', 'second', 'name', 'category_name', 'tag', 'feed', 'author_name', 'static', 'pagename', 'page_id', 'error', 'comments_popup', 'attachment', 'attachment_id', 'subpost', 'subpost_id', 'preview', 'robots', 'taxonomy', 'term', 'cpage', 'post_type'); 19 18 20 19 /** 21 20 * Private query variables. … … 25 24 * @since 2.0.0 26 25 * @var array 27 26 */ 28 var$private_query_vars = array('offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in');27 public $private_query_vars = array('offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in'); 29 28 30 29 /** 31 30 * Extra query variables set by the user. … … 33 32 * @since 2.1.0 34 33 * @var array 35 34 */ 36 var$extra_query_vars = array();35 public $extra_query_vars = array(); 37 36 38 37 /** 39 38 * Query variables for setting up the WordPress Query Loop. … … 41 40 * @since 2.0.0 42 41 * @var array 43 42 */ 44 var$query_vars;43 public $query_vars; 45 44 46 45 /** 47 46 * String parsed to set the query variables. … … 49 48 * @since 2.0.0 50 49 * @var string 51 50 */ 52 var$query_string;51 public $query_string; 53 52 54 53 /** 55 54 * Permalink or requested URI. … … 57 56 * @since 2.0.0 58 57 * @var string 59 58 */ 60 var$request;59 public $request; 61 60 62 61 /** 63 62 * Rewrite rule the request matched. … … 65 64 * @since 2.0.0 66 65 * @var string 67 66 */ 68 var$matched_rule;67 public $matched_rule; 69 68 70 69 /** 71 70 * Rewrite query the request matched. … … 73 72 * @since 2.0.0 74 73 * @var string 75 74 */ 76 var$matched_query;75 public $matched_query; 77 76 78 77 /** 79 78 * Whether already did the permalink. … … 81 80 * @since 2.0.0 82 81 * @var bool 83 82 */ 84 var$did_permalink = false;83 public $did_permalink = false; 85 84 86 85 /** 87 86 * Add name to list of public query variables. … … 574 573 * @access public 575 574 * @var string 576 575 */ 577 var$output;576 public $output; 578 577 579 578 /** 580 579 * subject to perform mapping on (query string containing $matches[] references … … 589 588 * 590 589 * @var string 591 590 */ 592 var$_pattern = '(\$matches\[[1-9]+[0-9]*\])'; // magic number591 public $_pattern = '(\$matches\[[1-9]+[0-9]*\])'; // magic number 593 592 594 593 /** 595 594 * constructor -
wp-includes/capabilities.php
31 31 * List of roles and capabilities. 32 32 * 33 33 * @since 2.0.0 34 * @access public35 34 * @var array 36 35 */ 37 var$roles;36 public $roles; 38 37 39 38 /** 40 39 * List of the role objects. 41 40 * 42 41 * @since 2.0.0 43 * @access public44 42 * @var array 45 43 */ 46 var$role_objects = array();44 public $role_objects = array(); 47 45 48 46 /** 49 47 * List of role names. 50 48 * 51 49 * @since 2.0.0 52 * @access public53 50 * @var array 54 51 */ 55 var$role_names = array();52 public $role_names = array(); 56 53 57 54 /** 58 55 * Option name for storing role list. 59 56 * 60 57 * @since 2.0.0 61 * @access public62 58 * @var string 63 59 */ 64 var$role_key;60 public $role_key; 65 61 66 62 /** 67 63 * Whether to use the database for retrieval and storage. 68 64 * 69 65 * @since 2.1.0 70 * @access public71 66 * @var bool 72 67 */ 73 var$use_db = true;68 public $use_db = true; 74 69 75 70 /** 76 71 * Constructor … … 286 281 * Role name. 287 282 * 288 283 * @since 2.0.0 289 * @access public290 284 * @var string 291 285 */ 292 var$name;286 public $name; 293 287 294 288 /** 295 289 * List of capabilities the role contains. 296 290 * 297 291 * @since 2.0.0 298 * @access public299 292 * @var array 300 293 */ 301 var$capabilities;294 public $capabilities; 302 295 303 296 /** 304 297 * Constructor - Set up object properties. … … 405 398 * The user's ID. 406 399 * 407 400 * @since 2.1.0 408 * @access public409 401 * @var int 410 402 */ 411 var$ID = 0;403 public $ID = 0; 412 404 413 405 /** 414 406 * The individual capabilities the user has been given. 415 407 * 416 408 * @since 2.0.0 417 * @access public418 409 * @var array 419 410 */ 420 var$caps = array();411 public $caps = array(); 421 412 422 413 /** 423 414 * User metadata option name. 424 415 * 425 416 * @since 2.0.0 426 * @access public427 417 * @var string 428 418 */ 429 var$cap_key;419 public $cap_key; 430 420 431 421 /** 432 422 * The roles the user is part of. 433 423 * 434 424 * @since 2.0.0 435 * @access public436 425 * @var array 437 426 */ 438 var$roles = array();427 public $roles = array(); 439 428 440 429 /** 441 430 * All capabilities the user has, including individual and role based. 442 431 * 443 432 * @since 2.0.0 444 * @access public445 433 * @var array 446 434 */ 447 var$allcaps = array();435 public $allcaps = array(); 448 436 449 437 /** 450 438 * The filter context applied to user data fields. -
wp-includes/class-oembed.php
18 18 * @since 2.9.0 19 19 */ 20 20 class WP_oEmbed { 21 var$providers = array();21 public $providers = array(); 22 22 23 23 /** 24 24 * Constructor -
wp-includes/widgets.php
23 23 */ 24 24 class WP_Widget { 25 25 26 var$id_base; // Root id for all widgets of this type.27 var$name; // Name for this widget type.28 var$widget_options; // Option array passed to wp_register_sidebar_widget()29 var$control_options; // Option array passed to wp_register_widget_control()26 public $id_base; // Root id for all widgets of this type. 27 public $name; // Name for this widget type. 28 public $widget_options; // Option array passed to wp_register_sidebar_widget() 29 public $control_options; // Option array passed to wp_register_widget_control() 30 30 31 var$number = false; // Unique ID number of the current instance.32 var$id = false; // Unique ID string of the current instance (id_base-number)33 var$updated = false; // Set true when we update the data after a POST submit - makes sure we don't do it twice.31 public $number = false; // Unique ID number of the current instance. 32 public $id = false; // Unique ID string of the current instance (id_base-number) 33 public $updated = false; // Set true when we update the data after a POST submit - makes sure we don't do it twice. 34 34 35 35 // Member functions that you must over-ride. 36 36 … … 314 314 * @since 2.8 315 315 */ 316 316 class WP_Widget_Factory { 317 var$widgets = array();317 public $widgets = array(); 318 318 319 319 function WP_Widget_Factory() { 320 320 add_action( 'widgets_init', array( $this, '_register_widgets' ), 100 ); -
wp-includes/category-template.php
914 914 * @since 2.1.0 915 915 * @var string 916 916 */ 917 var$tree_type = 'category';917 public $tree_type = 'category'; 918 918 919 919 /** 920 920 * @see Walker::$db_fields … … 922 922 * @todo Decouple this 923 923 * @var array 924 924 */ 925 var$db_fields = array ('parent' => 'parent', 'id' => 'term_id');925 public $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); 926 926 927 927 /** 928 928 * @see Walker::start_el() -
wp-admin/includes/class-wp-terms-list-table.php
9 9 */ 10 10 class WP_Terms_List_Table extends WP_List_Table { 11 11 12 var$callback_args;12 public $callback_args; 13 13 14 14 function __construct( $args = array() ) { 15 15 global $post_type, $taxonomy, $action, $tax; -
wp-admin/includes/class-wp-filesystem-base.php
16 16 * Whether to display debug data for the connection. 17 17 * 18 18 * @since 2.5 19 * @access public20 19 * @var bool 21 20 */ 22 var$verbose = false;21 public $verbose = false; 23 22 /** 24 23 * Cached list of local filepaths to mapped remote filepaths. 25 24 * … … 33 32 * The Access method of the current connection, Set automatically. 34 33 * 35 34 * @since 2.5 36 * @access public37 35 * @var string 38 36 */ 39 var$method = '';37 public $method = ''; 40 38 41 39 /** 42 40 * Returns the path on the remote filesystem of ABSPATH -
wp-admin/includes/class-wp-users-list-table.php
9 9 */ 10 10 class WP_Users_List_Table extends WP_List_Table { 11 11 12 var$site_id;13 var$is_site_users;12 public $site_id; 13 public $is_site_users; 14 14 15 15 function __construct( $args = array() ) { 16 16 parent::__construct( array( -
wp-admin/includes/class-wp-ms-themes-list-table.php
9 9 */ 10 10 class WP_MS_Themes_List_Table extends WP_List_Table { 11 11 12 var$site_id;13 var$is_site_themes;12 public $site_id; 13 public $is_site_themes; 14 14 15 15 function __construct( $args = array() ) { 16 16 global $status, $page; -
wp-admin/includes/class-wp-theme-install-list-table.php
9 9 */ 10 10 class WP_Theme_Install_List_Table extends WP_Themes_List_Table { 11 11 12 var$features = array();12 public $features = array(); 13 13 14 14 function ajax_user_can() { 15 15 return current_user_can( 'install_themes' ); -
wp-admin/includes/class-wp-filesystem-ftpsockets.php
15 15 * @uses WP_Filesystem_Base Extends class 16 16 */ 17 17 class WP_Filesystem_ftpsockets extends WP_Filesystem_Base { 18 var$ftp = false;19 var$errors = null;20 var$options = array();18 public $ftp = false; 19 public $errors = null; 20 public $options = array(); 21 21 22 22 function __construct($opt = '') { 23 23 $this->method = 'ftpsockets'; -
wp-admin/includes/class-wp-upgrader.php
21 21 * @since 2.8.0 22 22 */ 23 23 class WP_Upgrader { 24 var$strings = array();25 var$skin = null;26 var$result = array();24 public $strings = array(); 25 public $skin = null; 26 public $result = array(); 27 27 28 28 function __construct($skin = null) { 29 29 if ( null == $skin ) … … 365 365 */ 366 366 class Plugin_Upgrader extends WP_Upgrader { 367 367 368 var$result;369 var$bulk = false;370 var$show_before = '';368 public $result; 369 public $bulk = false; 370 public $show_before = ''; 371 371 372 372 function upgrade_strings() { 373 373 $this->strings['up_to_date'] = __('The plugin is at the latest version.'); … … 642 642 */ 643 643 class Theme_Upgrader extends WP_Upgrader { 644 644 645 var$result;646 var$bulk = false;645 public $result; 646 public $bulk = false; 647 647 648 648 function upgrade_strings() { 649 649 $this->strings['up_to_date'] = __('The theme is at the latest version.'); … … 1083 1083 */ 1084 1084 class WP_Upgrader_Skin { 1085 1085 1086 var$upgrader;1087 var$done_header = false;1088 var$result = false;1086 public $upgrader; 1087 public $done_header = false; 1088 public $result = false; 1089 1089 1090 1090 function __construct($args = array()) { 1091 1091 $defaults = array( 'url' => '', 'nonce' => '', 'title' => '', 'context' => false ); … … 1169 1169 * @since 2.8.0 1170 1170 */ 1171 1171 class Plugin_Upgrader_Skin extends WP_Upgrader_Skin { 1172 var$plugin = '';1173 var$plugin_active = false;1174 var$plugin_network_active = false;1172 public $plugin = ''; 1173 public $plugin_active = false; 1174 public $plugin_network_active = false; 1175 1175 1176 1176 function __construct($args = array()) { 1177 1177 $defaults = array( 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => __('Update Plugin') ); … … 1219 1219 * @since 3.0.0 1220 1220 */ 1221 1221 class Bulk_Upgrader_Skin extends WP_Upgrader_Skin { 1222 var$in_loop = false;1223 var$error = false;1222 public $in_loop = false; 1223 public $error = false; 1224 1224 1225 1225 function __construct($args = array()) { 1226 1226 $defaults = array( 'url' => '', 'nonce' => '' ); … … 1325 1325 } 1326 1326 1327 1327 class Bulk_Plugin_Upgrader_Skin extends Bulk_Upgrader_Skin { 1328 var$plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in.1328 public $plugin_info = array(); // Plugin_Upgrader::bulk() will fill this in. 1329 1329 1330 1330 function __construct($args = array()) { 1331 1331 parent::__construct($args); … … 1359 1359 } 1360 1360 1361 1361 class Bulk_Theme_Upgrader_Skin extends Bulk_Upgrader_Skin { 1362 var$theme_info = array(); // Theme_Upgrader::bulk() will fill this in.1362 public $theme_info = array(); // Theme_Upgrader::bulk() will fill this in. 1363 1363 1364 1364 function __construct($args = array()) { 1365 1365 parent::__construct($args); … … 1403 1403 * @since 2.8.0 1404 1404 */ 1405 1405 class Plugin_Installer_Skin extends WP_Upgrader_Skin { 1406 var$api;1407 var$type;1406 public $api; 1407 public $type; 1408 1408 1409 1409 function __construct($args = array()) { 1410 1410 $defaults = array( 'type' => 'web', 'url' => '', 'plugin' => '', 'nonce' => '', 'title' => '' ); … … 1468 1468 * @since 2.8.0 1469 1469 */ 1470 1470 class Theme_Installer_Skin extends WP_Upgrader_Skin { 1471 var$api;1472 var$type;1471 public $api; 1472 public $type; 1473 1473 1474 1474 function __construct($args = array()) { 1475 1475 $defaults = array( 'type' => 'web', 'url' => '', 'theme' => '', 'nonce' => '', 'title' => '' ); … … 1543 1543 * @since 2.8.0 1544 1544 */ 1545 1545 class Theme_Upgrader_Skin extends WP_Upgrader_Skin { 1546 var$theme = '';1546 public $theme = ''; 1547 1547 1548 1548 function __construct($args = array()) { 1549 1549 $defaults = array( 'url' => '', 'theme' => '', 'nonce' => '', 'title' => __('Update Theme') ); … … 1606 1606 * @since 2.8.0 1607 1607 */ 1608 1608 class File_Upload_Upgrader { 1609 var$package;1610 var$filename;1611 var$id = 0;1609 public $package; 1610 public $filename; 1611 public $id = 0; 1612 1612 1613 1613 function __construct($form, $urlholder) { 1614 1614 -
wp-admin/includes/class-wp-themes-list-table.php
10 10 class WP_Themes_List_Table extends WP_List_Table { 11 11 12 12 protected $search_terms = array(); 13 var$features = array();13 public $features = array(); 14 14 15 15 function __construct( $args = array() ) { 16 16 parent::__construct( array( -
wp-admin/includes/class-wp-comments-list-table.php
17 17 */ 18 18 class WP_Comments_List_Table extends WP_List_Table { 19 19 20 var$checkbox = true;20 public $checkbox = true; 21 21 22 var$pending_count = array();22 public $pending_count = array(); 23 23 24 24 function __construct( $args = array() ) { 25 25 global $post_id; -
wp-admin/includes/template.php
21 21 * @since 2.5.1 22 22 */ 23 23 class Walker_Category_Checklist extends Walker { 24 var$tree_type = 'category';25 var$db_fields = array ('parent' => 'parent', 'id' => 'term_id'); //TODO: decouple this24 public $tree_type = 'category'; 25 public $db_fields = array ('parent' => 'parent', 'id' => 'term_id'); //TODO: decouple this 26 26 27 27 function start_lvl( &$output, $depth = 0, $args = array() ) { 28 28 $indent = str_repeat("\t", $depth); -
wp-admin/includes/class-wp-filesystem-direct.php
15 15 * @uses WP_Filesystem_Base Extends class 16 16 */ 17 17 class WP_Filesystem_Direct extends WP_Filesystem_Base { 18 var$errors = null;18 public $errors = null; 19 19 /** 20 20 * constructor 21 21 * -
wp-admin/includes/class-wp-filesystem-ftpext.php
15 15 * @uses WP_Filesystem_Base Extends class 16 16 */ 17 17 class WP_Filesystem_FTPext extends WP_Filesystem_Base { 18 var$link;19 var$errors = null;20 var$options = array();18 public $link; 19 public $errors = null; 20 public $options = array(); 21 21 22 22 function __construct($opt='') { 23 23 $this->method = 'ftpext'; -
wp-admin/includes/class-wp-filesystem-ssh2.php
42 42 */ 43 43 class WP_Filesystem_SSH2 extends WP_Filesystem_Base { 44 44 45 var$link = false;46 var$sftp_link = false;47 var$keys = false;48 var$errors = array();49 var$options = array();45 public $link = false; 46 public $sftp_link = false; 47 public $keys = false; 48 public $errors = array(); 49 public $options = array(); 50 50 51 51 function __construct($opt='') { 52 52 $this->method = 'ssh2';