Inheritance diagram for ilFSStorageEvent:
Collaboration diagram for ilFSStorageEvent:Public Member Functions | |
| __construct ($a_event_id=0) | |
| Constructor. | |
| createDirectory () | |
| Create directory. | |
| __construct ($a_event_id=0) | |
| Constructor. | |
| createDirectory () | |
| Create directory. | |
Protected Member Functions | |
| getPathPostfix () | |
| Implementation of abstract method. | |
| getPathPrefix () | |
| Implementation of abstract method. | |
| getPathPostfix () | |
| Implementation of abstract method. | |
| getPathPrefix () | |
| Implementation of abstract method. | |
Private Attributes | |
| $log | |
Definition at line 32 of file class.ilFSStorageEvent.php.
| ilFSStorageEvent::__construct | ( | $ | a_event_id = 0 |
) |
Constructor.
public
Definition at line 42 of file class.ilFSStorageEvent.php.
References $log, and ilFileSystemStorage::STORAGE_DATA.
Referenced by __construct().
{
global $log;
$this->log = $log;
parent::__construct(ilFileSystemStorage::STORAGE_DATA,true,$a_event_id);
}
Here is the caller graph for this function:| ilFSStorageEvent::__construct | ( | $ | a_event_id = 0 |
) |
Constructor.
public
Definition at line 42 of file class.ilFSStorageEvent.php.
References $log, __construct(), and ilFileSystemStorage::STORAGE_DATA.
{
global $log;
$this->log = $log;
parent::__construct(ilFileSystemStorage::STORAGE_DATA,true,$a_event_id);
}
Here is the call graph for this function:| ilFSStorageEvent::createDirectory | ( | ) |
Create directory.
public
Definition at line 57 of file class.ilFSStorageEvent.php.
References ilFileSystemStorage::getAbsolutePath(), and ilUtil::makeDirParents().
{
return ilUtil::makeDirParents($this->getAbsolutePath());
}
Here is the call graph for this function:| ilFSStorageEvent::createDirectory | ( | ) |
Create directory.
public
Definition at line 57 of file class.ilFSStorageEvent.php.
References ilFileSystemStorage::getAbsolutePath(), ilUtil::makeDirParents(), and ilUpdateUtils::removeTrailingPathSeparators().
{
return ilUtil::makeDirParents(ilUpdateUtils::removeTrailingPathSeparators($this->getAbsolutePath()));
}
Here is the call graph for this function:| ilFSStorageEvent::getPathPostfix | ( | ) | [protected] |
Implementation of abstract method.
protected
Reimplemented from ilFileSystemStorage.
Definition at line 69 of file class.ilFSStorageEvent.php.
{
return 'event';
}
| ilFSStorageEvent::getPathPostfix | ( | ) | [protected] |
Implementation of abstract method.
protected
Reimplemented from ilFileSystemStorage.
Definition at line 69 of file class.ilFSStorageEvent.php.
{
return 'event';
}
| ilFSStorageEvent::getPathPrefix | ( | ) | [protected] |
Implementation of abstract method.
protected
Reimplemented from ilFileSystemStorage.
Definition at line 80 of file class.ilFSStorageEvent.php.
{
return 'ilEvents';
}
| ilFSStorageEvent::getPathPrefix | ( | ) | [protected] |
Implementation of abstract method.
protected
Reimplemented from ilFileSystemStorage.
Definition at line 80 of file class.ilFSStorageEvent.php.
{
return 'ilEvents';
}
ilFSStorageEvent::$log [private] |
Definition at line 34 of file class.ilFSStorageEvent.php.
Referenced by __construct().
1.7.1