<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[28487] trunk/src/wp-admin/includes/class-wp-filesystem-base.php: Add access modifiers to members and methods in `WP_Filesystem_Base`.</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://core.trac.wordpress.org/changeset/28487">28487</a></dd>
<dt>Author</dt> <dd>wonderboymusic</dd>
<dt>Date</dt> <dd>2014-05-19 00:05:06 +0000 (Mon, 19 May 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add access modifiers to members and methods in `WP_Filesystem_Base`. Add magic `__get()` method for backwards compatibility.

See <a href="http://core.trac.wordpress.org/ticket/27881">#27881</a>, <a href="http://core.trac.wordpress.org/ticket/22234">#22234</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunksrcwpadminincludesclasswpfilesystembasephp">trunk/src/wp-admin/includes/class-wp-filesystem-base.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunksrcwpadminincludesclasswpfilesystembasephp"></a>
<div class="modfile"><h4>Modified: trunk/src/wp-admin/includes/class-wp-filesystem-base.php (28486 => 28487)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/src/wp-admin/includes/class-wp-filesystem-base.php 2014-05-18 23:58:38 UTC (rev 28486)
+++ trunk/src/wp-admin/includes/class-wp-filesystem-base.php    2014-05-19 00:05:06 UTC (rev 28487)
</span><span class="lines">@@ -19,7 +19,7 @@
</span><span class="cx">   * @since 2.5.0
</span><span class="cx">   * @var bool
</span><span class="cx">   */
</span><del>-       var $verbose = false;
</del><ins>+        public $verbose = false;
</ins><span class="cx"> 
</span><span class="cx">  /**
</span><span class="cx">   * Cached list of local filepaths to mapped remote filepaths.
</span><span class="lines">@@ -28,7 +28,7 @@
</span><span class="cx">   * @since 2.7.0
</span><span class="cx">   * @var array
</span><span class="cx">   */
</span><del>-       var $cache = array();
</del><ins>+        private $cache = array();
</ins><span class="cx"> 
</span><span class="cx">  /**
</span><span class="cx">   * The Access method of the current connection, Set automatically.
</span><span class="lines">@@ -37,14 +37,25 @@
</span><span class="cx">   * @since 2.5.0
</span><span class="cx">   * @var string
</span><span class="cx">   */
</span><del>-       var $method = '';
</del><ins>+        public $method = '';
</ins><span class="cx"> 
</span><span class="cx">  /**
</span><span class="cx">   * Constructor (empty).
</span><span class="cx">   */
</span><del>-       function __construct() {}
</del><ins>+        public function __construct() {}
</ins><span class="cx"> 
</span><span class="cx">  /**
</span><ins>+        * Make private properties readable for backwards compatibility
+        *
+        * @since 4.0.0
+        * @param string $name
+        * @return mixed
+        */
+       public function __get( $name ) {
+               return $this->$name;
+       }
+
+       /**
</ins><span class="cx">    * Return the path on the remote filesystem of ABSPATH.
</span><span class="cx">   *
</span><span class="cx">   * @access public
</span><span class="lines">@@ -52,7 +63,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function abspath() {
</del><ins>+        public function abspath() {
</ins><span class="cx">           $folder = $this->find_folder(ABSPATH);
</span><span class="cx">          // Perhaps the FTP folder is rooted at the WordPress install, Check for wp-includes folder in root, Could have some false positives, but rare.
</span><span class="cx">          if ( ! $folder && $this->is_dir('/wp-includes') )
</span><span class="lines">@@ -68,7 +79,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function wp_content_dir() {
</del><ins>+        public function wp_content_dir() {
</ins><span class="cx">           return $this->find_folder(WP_CONTENT_DIR);
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -80,7 +91,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function wp_plugins_dir() {
</del><ins>+        public function wp_plugins_dir() {
</ins><span class="cx">           return $this->find_folder(WP_PLUGIN_DIR);
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -93,7 +104,7 @@
</span><span class="cx">   * @param string $theme The Theme stylesheet or template for the directory.
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function wp_themes_dir( $theme = false ) {
</del><ins>+        public function wp_themes_dir( $theme = false ) {
</ins><span class="cx">           $theme_root = get_theme_root( $theme );
</span><span class="cx"> 
</span><span class="cx">          // Account for relative theme roots
</span><span class="lines">@@ -111,7 +122,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function wp_lang_dir() {
</del><ins>+        public function wp_lang_dir() {
</ins><span class="cx">           return $this->find_folder(WP_LANG_DIR);
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -132,7 +143,7 @@
</span><span class="cx">   *                     Default false.
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function find_base_dir( $base = '.', $echo = false ) {
</del><ins>+        public function find_base_dir( $base = '.', $echo = false ) {
</ins><span class="cx">           _deprecated_function(__FUNCTION__, '2.7', 'WP_Filesystem::abspath() or WP_Filesystem::wp_*_dir()' );
</span><span class="cx">          $this->verbose = $echo;
</span><span class="cx">          return $this->abspath();
</span><span class="lines">@@ -154,7 +165,7 @@
</span><span class="cx">   * @param bool   $echo True to display debug information.
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function get_base_dir( $base = '.', $echo = false ) {
</del><ins>+        public function get_base_dir( $base = '.', $echo = false ) {
</ins><span class="cx">           _deprecated_function(__FUNCTION__, '2.7', 'WP_Filesystem::abspath() or WP_Filesystem::wp_*_dir()' );
</span><span class="cx">          $this->verbose = $echo;
</span><span class="cx">          return $this->abspath();
</span><span class="lines">@@ -172,7 +183,7 @@
</span><span class="cx">   * @param string $folder the folder to locate.
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function find_folder( $folder ) {
</del><ins>+        public function find_folder( $folder ) {
</ins><span class="cx"> 
</span><span class="cx">          if ( isset( $this->cache[ $folder ] ) )
</span><span class="cx">                  return $this->cache[ $folder ];
</span><span class="lines">@@ -241,7 +252,7 @@
</span><span class="cx">   * @param bool   $loop   If the function has recursed, Internal use only.
</span><span class="cx">   * @return string The location of the remote path.
</span><span class="cx">   */
</span><del>-       function search_for_folder( $folder, $base = '.', $loop = false ) {
</del><ins>+        public function search_for_folder( $folder, $base = '.', $loop = false ) {
</ins><span class="cx">           if ( empty( $base ) || '.' == $base )
</span><span class="cx">                  $base = trailingslashit($this->cwd());
</span><span class="cx"> 
</span><span class="lines">@@ -308,7 +319,7 @@
</span><span class="cx">   * @param string $file String filename.
</span><span class="cx">   * @return string The *nix-style representation of permissions.
</span><span class="cx">   */
</span><del>-       function gethchmod( $file ){
</del><ins>+        public function gethchmod( $file ){
</ins><span class="cx">           $perms = $this->getchmod($file);
</span><span class="cx">          if (($perms & 0xC000) == 0xC000) // Socket
</span><span class="cx">                  $info = 's';
</span><span class="lines">@@ -364,7 +375,7 @@
</span><span class="cx">   * @param string $mode string The *nix-style file permission.
</span><span class="cx">   * @return int octal representation
</span><span class="cx">   */
</span><del>-       function getnumchmodfromh( $mode ) {
</del><ins>+        public function getnumchmodfromh( $mode ) {
</ins><span class="cx">           $realmode = '';
</span><span class="cx">          $legal =  array('', 'w', 'r', 'x', '-');
</span><span class="cx">          $attarray = preg_split('//', $mode);
</span><span class="lines">@@ -393,7 +404,7 @@
</span><span class="cx">   * @param string $text String to test against.
</span><span class="cx">   * @return bool true if string is binary, false otherwise.
</span><span class="cx">   */
</span><del>-       function is_binary( $text ) {
</del><ins>+        public function is_binary( $text ) {
</ins><span class="cx">           return (bool) preg_match( '|[^\x20-\x7E]|', $text ); // chr(32)..chr(127)
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -409,7 +420,7 @@
</span><span class="cx">   * @param bool   $recursive Optional. If set True changes file owner recursivly. Defaults to False.
</span><span class="cx">   * @return bool Returns true on success or false on failure.
</span><span class="cx">   */
</span><del>-       function chown( $file, $owner, $recursive = false ) {
</del><ins>+        public function chown( $file, $owner, $recursive = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -420,7 +431,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return bool True on success or false on failure (always true for WP_Filesystem_Direct).
</span><span class="cx">   */
</span><del>-       function connect() {
</del><ins>+        public function connect() {
</ins><span class="cx">           return true;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -432,7 +443,7 @@
</span><span class="cx">   * @param string $file Name of the file to read.
</span><span class="cx">   * @return string|bool Returns the read data or false on failure.
</span><span class="cx">   */
</span><del>-       function get_contents( $file ) {
</del><ins>+        public function get_contents( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -444,7 +455,7 @@
</span><span class="cx">   * @param string $file Path to the file.
</span><span class="cx">   * @return array|bool the file contents in an array or false on failure.
</span><span class="cx">   */
</span><del>-       function get_contents_array( $file ) {
</del><ins>+        public function get_contents_array( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -458,7 +469,7 @@
</span><span class="cx">   * @param int    $mode     Optional. The file permissions as octal number, usually 0644.
</span><span class="cx">   * @return bool False on failure.
</span><span class="cx">   */
</span><del>-       function put_contents( $file, $contents, $mode = false ) {
</del><ins>+        public function put_contents( $file, $contents, $mode = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -469,7 +480,7 @@
</span><span class="cx">   *
</span><span class="cx">   * @return string|bool The current working directory on success, or false on failure.
</span><span class="cx">   */
</span><del>-       function cwd() {
</del><ins>+        public function cwd() {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -481,7 +492,7 @@
</span><span class="cx">   * @param string $dir The new current directory.
</span><span class="cx">   * @return bool Returns true on success or false on failure.
</span><span class="cx">   */
</span><del>-       function chdir( $dir ) {
</del><ins>+        public function chdir( $dir ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -495,7 +506,7 @@
</span><span class="cx">   * @param bool   $recursive Optional. If set True changes file group recursively. Defaults to False.
</span><span class="cx">   * @return bool Returns true on success or false on failure.
</span><span class="cx">   */
</span><del>-       function chgrp( $file, $group, $recursive = false ) {
</del><ins>+        public function chgrp( $file, $group, $recursive = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -509,7 +520,7 @@
</span><span class="cx">   * @param bool   $recursive Optional. If set True changes file group recursively. Defaults to False.
</span><span class="cx">   * @return bool Returns true on success or false on failure.
</span><span class="cx">   */
</span><del>-       function chmod( $file, $mode = false, $recursive = false ) {
</del><ins>+        public function chmod( $file, $mode = false, $recursive = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -521,7 +532,7 @@
</span><span class="cx">   * @param string $file Path to the file.
</span><span class="cx">   * @return string|bool Username of the user or false on error.
</span><span class="cx">   */
</span><del>-       function owner( $file ) {
</del><ins>+        public function owner( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -533,7 +544,7 @@
</span><span class="cx">   * @param string $file Path to the file.
</span><span class="cx">   * @return string|bool The group or false on error.
</span><span class="cx">   */
</span><del>-       function group( $file ) {
</del><ins>+        public function group( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -550,7 +561,7 @@
</span><span class="cx">   *                            Default false.
</span><span class="cx">   * @return bool True if file copied successfully, False otherwise.
</span><span class="cx">   */
</span><del>-       function copy( $source, $destination, $overwrite = false, $mode = false ) {
</del><ins>+        public function copy( $source, $destination, $overwrite = false, $mode = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -565,7 +576,7 @@
</span><span class="cx">   *                            Default false.
</span><span class="cx">   * @return bool True if file copied successfully, False otherwise.
</span><span class="cx">   */
</span><del>-       function move( $source, $destination, $overwrite = false ) {
</del><ins>+        public function move( $source, $destination, $overwrite = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -581,7 +592,7 @@
</span><span class="cx">   *                          Default false.
</span><span class="cx">   * @return bool True if the file or directory was deleted, false on failure.
</span><span class="cx">   */
</span><del>-       function delete( $file, $recursive = false, $type = false ) {
</del><ins>+        public function delete( $file, $recursive = false, $type = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -593,7 +604,7 @@
</span><span class="cx">   * @param string $file Path to file/directory.
</span><span class="cx">   * @return bool Whether $file exists or not.
</span><span class="cx">   */
</span><del>-       function exists( $file ) {
</del><ins>+        public function exists( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -605,7 +616,7 @@
</span><span class="cx">   * @param string $file File path.
</span><span class="cx">   * @return bool Whether $file is a file.
</span><span class="cx">   */
</span><del>-       function is_file( $file ) {
</del><ins>+        public function is_file( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -617,7 +628,7 @@
</span><span class="cx">   * @param string $path Directory path.
</span><span class="cx">   * @return bool Whether $path is a directory.
</span><span class="cx">   */
</span><del>-       function is_dir( $path ) {
</del><ins>+        public function is_dir( $path ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -629,7 +640,7 @@
</span><span class="cx">   * @param string $file Path to file.
</span><span class="cx">   * @return bool Whether $file is readable.
</span><span class="cx">   */
</span><del>-       function is_readable( $file ) {
</del><ins>+        public function is_readable( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -641,7 +652,7 @@
</span><span class="cx">   * @param string $path Path to file/directory.
</span><span class="cx">   * @return bool Whether $file is writable.
</span><span class="cx">   */
</span><del>-       function is_writable( $file ) {
</del><ins>+        public function is_writable( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -653,7 +664,7 @@
</span><span class="cx">   * @param string $file Path to file.
</span><span class="cx">   * @return int Unix timestamp representing last access time.
</span><span class="cx">   */
</span><del>-       function atime( $file ) {
</del><ins>+        public function atime( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -665,7 +676,7 @@
</span><span class="cx">   * @param string $file Path to file.
</span><span class="cx">   * @return int Unix timestamp representing modification time.
</span><span class="cx">   */
</span><del>-       function mtime( $file ) {
</del><ins>+        public function mtime( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -677,7 +688,7 @@
</span><span class="cx">   * @param string $file Path to file.
</span><span class="cx">   * @return int Size of the file in bytes.
</span><span class="cx">   */
</span><del>-       function size( $file ) {
</del><ins>+        public function size( $file ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -695,7 +706,7 @@
</span><span class="cx">   *                      Default 0.
</span><span class="cx">   * @return bool Whether operation was successful or not.
</span><span class="cx">   */
</span><del>-       function touch( $file, $time = 0, $atime = 0 ) {
</del><ins>+        public function touch( $file, $time = 0, $atime = 0 ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -713,7 +724,7 @@
</span><span class="cx">   *                      Default false.
</span><span class="cx">   * @return bool False if directory cannot be created, true otherwise.
</span><span class="cx">   */
</span><del>-       function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
</del><ins>+        public function mkdir( $path, $chmod = false, $chown = false, $chgrp = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -727,7 +738,7 @@
</span><span class="cx">   *                          Default false.
</span><span class="cx">   * @return bool Whether directory is deleted successfully or not.
</span><span class="cx">   */
</span><del>-       function rmdir( $path, $recursive = false ) {
</del><ins>+        public function rmdir( $path, $recursive = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span><span class="lines">@@ -756,7 +767,7 @@
</span><span class="cx">   *     @type mixed  'files'       If a directory and $recursive is true, contains another array of files.
</span><span class="cx">   * }
</span><span class="cx">   */
</span><del>-       function dirlist( $path, $include_hidden = true, $recursive = false ) {
</del><ins>+        public function dirlist( $path, $include_hidden = true, $recursive = false ) {
</ins><span class="cx">           return false;
</span><span class="cx">  }
</span><span class="cx"> 
</span></span></pre>
</div>
</div>

</body>
</html>