Source for file Object.php
Documentation is available at Object.php
require_once dirname (__FILE__ ) . '/../VFS.php';
* A wrapper for the VFS class to return objects, instead of arrays.
* $Horde: framework/VFS/lib/VFS/Object.php,v 1.1.2.1 2007/12/20 13:50:21 jan Exp $
* Copyright 2002-2007 Jon Wood <jon@jellybob.co.uk>
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
* @author Jon Wood <jon@jellybob.co.uk>
* The actual vfs that does the work
* The current path that has been passed to listFolder, if this
* changes, the list will be rebuilt.
* The return value from a standard VFS listFolder call, to
* be read with the Object listFolder.
* If you pass in an existing VFS object, it will be used as the VFS
* object for this object.
* @param VFS &$vfs The VFS object to wrap.
* Attempts to return a concrete VFS_Object instance based on $driver.
* @param mixed $driver The type of concrete VFS subclass to return. If
* $driver is an array then we will look in
* $driver[0]/lib/VFS/ for the subclass
* implementation named $driver[1].php.
* @param array $params A hash containing any additional configuration or
* connection parameters a subclass might need.
* @return VFS_Object The newly created concrete VFS_Object instance, or
function &factory($driver, $params = array ())
* Attempts to return a reference to a concrete VFS instance
* based on $driver. It will only create a new instance if no
* VFS instance with the same parameters currently exists.
* This should be used if multiple types of file backends (and,
* thus, multiple VFS instances) are required.
* This method must be invoked as: $var = &VFS::singleton()
* @param mixed $driver The type of concrete VFS subclass to return. If
* $driver is an array then we will look in
* $driver[0]/lib/VFS/ for the subclass
* implementation named $driver[1].php.
* @param array $params A hash containing any additional configuration or
* connection parameters a subclass might need.
* @return VFS_Object The concrete VFS_Object reference, or false on
function &singleton($driver, $params = array ())
* Check the credentials that we have to see if there is a valid login.
* @return mixed True on success, PEAR_Error describing the problem
* if the credentials are invalid.
* Set configuration parameters.
* @param array $params An associative array of parameter name/value
* Retrieve a file from the VFS.
* @param string $path The pathname to the file.
* @return string The file data.
* Store a file in the VFS.
* @param string $path The path to store the file in.
* @param string $tmpFile The temporary file containing the data to be
* @param boolean $autocreate Automatically create directories?
* @return mixed True on success or a PEAR_Error object on failure.
function write($path, $tmpFile, $autocreate = false )
* Store a file in the VFS from raw data.
* @param string $path The path to store the file in.
* @param string $data The file data.
* @param boolean $autocreate Automatically create directories?
* @return mixed True on success or a PEAR_Error object on failure.
function writeData($path, $data, $autocreate = false )
* Delete a file from the VFS.
* @param string $path The path to store the file in.
* @param string $name The filename to use.
* @return mixed True on success or a PEAR_Error object on failure.
* Rename a file in the VFS.
* @param string $oldpath The old path to the file.
* @param string $oldname The old filename.
* @param string $newpath The new path of the file.
* @param string $newname The new filename.
* @return mixed True on success or a PEAR_Error object on failure.
function rename($oldpath, $newpath)
* Create a folder in the VFS.
* @param string $path The path to the folder.
* @return mixed True on success or a PEAR_Error object on failure.
* Deletes a folder from the VFS.
* @param string $path The path of the folder to delete.
* @return mixed True on success or a PEAR_Error object on failure.
* Returns a VFS_ListItem object if the folder can
* be read, or a PEAR_Error if it can't be. Returns false once
* the folder has been completely read.
* @param string $path The path of the diretory.
* @return mixed File list (array) on success, a PEAR_Error
* object on failure, or false if the folder is
if (!($path === $this->_currentPath)) {
$this->_folderList = $folderList;
$this->_currentPath = $path;
return PEAR ::raiseError (sprintf(_("Could not read %s."), $path));
require_once dirname(__FILE__ ) . '/ListItem.php';
* Changes permissions for an Item on the VFS.
* @param string $path Holds the path of directory of the Item.
* @param string $permission TODO
* @return mixed True on success or a PEAR_Error object on failure.
* Return the list of additional credentials required, if any.
* @return array Credential list.
* Return the array specificying what permissions are changeable for this
* @return array Changeable permisions.
Documentation generated on Mon, 11 Mar 2019 15:34:55 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|