本文整理匯總了PHP中Includes\Utils\FileManager::getDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP FileManager::getDir方法的具體用法?PHP FileManager::getDir怎麽用?PHP FileManager::getDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Includes\Utils\FileManager
的用法示例。
在下文中一共展示了FileManager::getDir方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addFileCallback
/**
* Callback for a common operation for upgrade
*
* @param string $path File short path
* @param boolean $isTestMode If in test mode
*
* @return void
*/
protected function addFileCallback($path, $isTestMode)
{
if ($isTestMode) {
// Short names
$topDir = $this->manageFile($path, 'getDir');
$lcRoot = \Includes\Utils\FileManager::getRealPath(LC_DIR_ROOT);
$sysRoot = \Includes\Utils\FileManager::getRealPath('/');
// Search for writable directory
while (!\Includes\Utils\FileManager::isDir($topDir) && $topDir !== $lcRoot && $topDir !== $sysRoot) {
$topDir = \Includes\Utils\FileManager::getDir($topDir);
}
// Permissions are invalid
if (!\Includes\Utils\FileManager::isDirWriteable($topDir)) {
$this->addFileErrorMessage('Directory is not writable: "{{dir}}"', $path, false, array('dir' => $topDir));
$this->wrongPermissions[] = $topDir;
}
} else {
$source = $this->getFileSource($path);
if ($source !== null) {
if ($this->manageFile($path, 'write', array($source))) {
$this->addFileInfoMessage('File is added', $path, true);
} else {
$this->addFileErrorMessage('Unable to add file', $path, true);
}
} else {
$this->addFileErrorMessage('Unable to read file while adding', $path, true);
}
}
}