Make WordPress Core

Changeset 28492


Ignore:
Timestamp:
05/19/2014 12:19:00 AM (10 years ago)
Author:
wonderboymusic
Message:

Add access modifier (public) to methods in WP_Importer.

See #27881, #22234.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-importer.php

    r25254 r28492  
    99     * @return void
    1010     */
    11     function __construct() {}
     11    public function __construct() {}
    1212
    1313    /**
     
    1717     * @return array
    1818     */
    19     function get_imported_posts( $importer_name, $bid ) {
     19    public function get_imported_posts( $importer_name, $bid ) {
    2020        global $wpdb;
    2121
     
    5454     * @return int
    5555     */
    56     function count_imported_posts( $importer_name, $bid ) {
     56    public function count_imported_posts( $importer_name, $bid ) {
    5757        global $wpdb;
    5858
     
    8080     * @return array
    8181     */
    82     function get_imported_comments( $bid ) {
     82    public function get_imported_comments( $bid ) {
    8383        global $wpdb;
    8484
     
    116116    }
    117117
    118     function set_blog( $blog_id ) {
     118    public function set_blog( $blog_id ) {
    119119        if ( is_numeric( $blog_id ) ) {
    120120            $blog_id = (int) $blog_id;
     
    143143    }
    144144
    145     function set_user( $user_id ) {
     145    public function set_user( $user_id ) {
    146146        if ( is_numeric( $user_id ) ) {
    147147            $user_id = (int) $user_id;
     
    165165     * @return int
    166166     */
    167     function cmpr_strlen( $a, $b ) {
     167    public function cmpr_strlen( $a, $b ) {
    168168        return strlen( $b ) - strlen( $a );
    169169    }
     
    178178     * @return array
    179179     */
    180     function get_page( $url, $username = '', $password = '', $head = false ) {
     180    public function get_page( $url, $username = '', $password = '', $head = false ) {
    181181        // Increase the timeout
    182182        add_filter( 'http_request_timeout', array( $this, 'bump_request_timeout' ) );
     
    200200     * @return int
    201201     */
    202     function bump_request_timeout( $val ) {
     202    public function bump_request_timeout( $val ) {
    203203        return 60;
    204204    }
     
    209209     * @return bool
    210210     */
    211     function is_user_over_quota() {
     211    public function is_user_over_quota() {
    212212        if ( function_exists( 'upload_is_user_over_quota' ) ) {
    213213            if ( upload_is_user_over_quota( 1 ) ) {
     
    226226     * @return string
    227227     */
    228     function min_whitespace( $string ) {
     228    public function min_whitespace( $string ) {
    229229        return preg_replace( '|[\r\n\t ]+|', ' ', $string );
    230230    }
     
    235235     * @return void
    236236     */
    237     function stop_the_insanity() {
     237    public function stop_the_insanity() {
    238238        global $wpdb, $wp_actions;
    239239        // Or define( 'WP_IMPORTING', true );
Note: See TracChangeset for help on using the changeset viewer.