class DotDirectory in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/mikey179/vfsStream/src/main/php/org/bovigo/vfs/DotDirectory.php \org\bovigo\vfs\DotDirectory
Directory container.
Hierarchy
- class \org\bovigo\vfs\vfsStreamAbstractContent implements vfsStreamContent
- class \org\bovigo\vfs\vfsStreamDirectory implements vfsStreamContainer
- class \org\bovigo\vfs\DotDirectory
- class \org\bovigo\vfs\vfsStreamDirectory implements vfsStreamContainer
Expanded class hierarchy of DotDirectory
File
- vendor/
mikey179/ vfsStream/ src/ main/ php/ org/ bovigo/ vfs/ DotDirectory.php, line 14
Namespace
org\bovigo\vfsView source
class DotDirectory extends vfsStreamDirectory {
/**
* returns iterator for the children
*
* @return vfsStreamContainerIterator
*/
public function getIterator() {
return new \ArrayIterator(array());
}
/**
* checks whether dir is a dot dir
*
* @return bool
*/
public function isDot() {
return true;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DotDirectory:: |
public | function |
returns iterator for the children Overrides vfsStreamDirectory:: |
|
DotDirectory:: |
public | function |
checks whether dir is a dot dir Overrides vfsStreamDirectory:: |
|
vfsStreamAbstractContent:: |
protected | property | owner group of the file | |
vfsStreamAbstractContent:: |
protected | property | timestamp of last access | |
vfsStreamAbstractContent:: |
protected | property | timestamp of last attribute modification | |
vfsStreamAbstractContent:: |
protected | property | timestamp of last modification | |
vfsStreamAbstractContent:: |
protected | property | name of the container | |
vfsStreamAbstractContent:: |
private | property | path to to this content | |
vfsStreamAbstractContent:: |
protected | property | permissions for content | |
vfsStreamAbstractContent:: |
protected | property | type of the container | |
vfsStreamAbstractContent:: |
protected | property | owner of the file | |
vfsStreamAbstractContent:: |
public | function |
checks whether the container can be applied to given name Overrides vfsStreamContent:: |
1 |
vfsStreamAbstractContent:: |
public | function |
adds content to given container Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
change owner group of file to given group Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
change file mode to given permissions Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
change owner of file to given user Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function | returns the last access time of the stream content | |
vfsStreamAbstractContent:: |
public | function | returns the last attribute modification time of the stream content | |
vfsStreamAbstractContent:: |
public | function |
returns the last modification time of the stream content Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns owner group of file Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns the file name of the content Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns permissions Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns the type of the container Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns owner of file Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
checks whether content is executable Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
checks whether file is owned by group Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
checks whether file is owned by given user Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
checks whether content is readable Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
checks whether content is writable Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function | sets last access time of the stream content | |
vfsStreamAbstractContent:: |
public | function | sets the last attribute modification time of the stream content | |
vfsStreamAbstractContent:: |
public | function |
sets the last modification time of the stream content Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns path to this content Overrides vfsStreamContent:: |
|
vfsStreamAbstractContent:: |
public | function |
returns complete vfsStream url for this content Overrides vfsStreamContent:: |
|
vfsStreamContent:: |
constant | stream content type: block | ||
vfsStreamContent:: |
constant | stream content type: directory | ||
vfsStreamContent:: |
constant | stream content type: file | ||
vfsStreamDirectory:: |
protected | property | list of directory children | |
vfsStreamDirectory:: |
public | function |
adds child to the directory Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
public | function |
returns the child with the given name Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
protected static | function | helper method to calculate the child name | |
vfsStreamDirectory:: |
public | function |
returns a list of children for this directory Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
protected | function |
returns default permissions for concrete implementation Overrides vfsStreamAbstractContent:: |
|
vfsStreamDirectory:: |
protected | function | helper method to detect the real child name | |
vfsStreamDirectory:: |
public | function |
checks whether the container contains a child with the given name Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
public | function |
checks whether directory contains any children Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
public | function |
removes child from the directory Overrides vfsStreamContainer:: |
|
vfsStreamDirectory:: |
public | function |
renames the content Overrides vfsStreamAbstractContent:: |
|
vfsStreamDirectory:: |
public | function |
sets parent path Overrides vfsStreamAbstractContent:: |
|
vfsStreamDirectory:: |
public | function |
returns size of directory Overrides vfsStreamContent:: |
|
vfsStreamDirectory:: |
public | function | returns summarized size of directory and its children | |
vfsStreamDirectory:: |
protected | function | updates internal timestamps | |
vfsStreamDirectory:: |
public | function |
constructor Overrides vfsStreamAbstractContent:: |