Changeset 31126
- Timestamp:
- 01/10/2015 06:53:48 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-filesystem-ftpsockets.php
r30978 r31126 26 26 // Check if possible to use ftp functions. 27 27 if ( ! @include_once( ABSPATH . 'wp-admin/includes/class-ftp.php' ) ) { 28 return false;28 return; 29 29 } 30 30 $this->ftp = new ftp(); -
trunk/src/wp-includes/cache.php
r30681 r31126 677 677 * 678 678 * @since 2.0.8 679 * @return null|WP_Object_Cache If cache is disabled, returns null.680 679 */ 681 680 public function __construct() { -
trunk/src/wp-includes/class-http.php
r31090 r31126 1962 1962 } else { 1963 1963 if ( !isset( $data['name'] ) ) 1964 return false;1964 return; 1965 1965 1966 1966 // Set properties based directly on parameters. -
trunk/src/wp-includes/class-wp-ajax-response.php
r29454 r31126 23 23 * 24 24 * @param string|array $args Optional. Will be passed to add() method. 25 * @return WP_Ajax_Response26 25 */ 27 26 public function __construct( $args = '' ) { -
trunk/src/wp-includes/class-wp-customize-panel.php
r31083 r31126 155 155 156 156 $this->sections = array(); // Users cannot customize the $sections array. 157 158 return $this;159 157 } 160 158 -
trunk/src/wp-includes/class-wp-customize-section.php
r31083 r31126 164 164 165 165 $this->controls = array(); // Users cannot customize the $controls array. 166 167 return $this;168 166 } 169 167 -
trunk/src/wp-includes/class-wp-customize-setting.php
r31083 r31126 74 74 * theme mod or option name. 75 75 * @param array $args Setting arguments. 76 * @return WP_Customize_Setting $setting77 76 */ 78 77 public function __construct( $manager, $id, $args = array() ) { … … 100 99 if ( $this->sanitize_js_callback ) 101 100 add_filter( "customize_sanitize_js_{$this->id}", $this->sanitize_js_callback, 10, 2 ); 102 103 return $this;104 101 } 105 102 -
trunk/src/wp-includes/class-wp-error.php
r30681 r31126 54 54 * @param string $message Error message 55 55 * @param mixed $data Optional. Error data. 56 * @return WP_Error57 56 */ 58 57 public function __construct( $code = '', $message = '', $data = '' ) { -
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r31092 r31126 42 42 * 43 43 * @since 1.5.0 44 *45 * @return wp_xmlrpc_server46 44 */ 47 45 public function __construct() { … … 3097 3095 * @since 2.7.0 3098 3096 * 3099 * @param array $args .Contains:3097 * @param array $args Contains: 3100 3098 * - blog_id (unused) 3101 3099 * - username -
trunk/src/wp-includes/locale.php
r31078 r31126 319 319 * @since 2.1.0 320 320 * 321 * @return WP_Locale322 321 */ 323 322 function __construct() { -
trunk/src/wp-includes/query.php
r31090 r31126 3940 3940 * 3941 3941 * @param string $query URL query string. 3942 * @return WP_Query3943 3942 */ 3944 3943 public function __construct($query = '') { … … 4173 4172 * 4174 4173 * @param mixed $taxonomy Optional. Taxonomy slug or slugs. 4175 * @param mixed $term .Optional. Term ID, name, slug or array of Term IDs, names, and slugs.4174 * @param mixed $term Optional. Term ID, name, slug or array of Term IDs, names, and slugs. 4176 4175 * @return bool 4177 4176 */ -
trunk/src/wp-includes/rewrite.php
r31104 r31126 2172 2172 * @access public 2173 2173 * 2174 * @return WP_Rewrite2175 2174 */ 2176 2175 public function __construct() { -
trunk/src/wp-includes/user.php
r31090 r31126 487 487 * 488 488 * @param null|string|array $args Optional. The query variables. 489 * @return WP_User_Query490 489 */ 491 490 public function __construct( $query = null ) {
Note: See TracChangeset
for help on using the changeset viewer.