本文整理匯總了PHP中UTIL_File::chmodDir方法的典型用法代碼示例。如果您正苦於以下問題:PHP UTIL_File::chmodDir方法的具體用法?PHP UTIL_File::chmodDir怎麽用?PHP UTIL_File::chmodDir使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類UTIL_File
的用法示例。
在下文中一共展示了UTIL_File::chmodDir方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: addPluginDirs
/**
* Creates platform reserved dirs for plugin, copies all plugin static data
*
* @param BOL_Plugin $pluginDto
*/
public function addPluginDirs(BOL_Plugin $pluginDto)
{
$plugin = new OW_Plugin($pluginDto);
if (file_exists($plugin->getStaticDir())) {
UTIL_File::copyDir($plugin->getStaticDir(), $plugin->getPublicStaticDir());
UTIL_File::chmodDir($plugin->getPublicStaticDir(), 0777, 0666);
}
// create dir in pluginfiles
if (file_exists($plugin->getInnerPluginFilesDir())) {
UTIL_File::copyDir($plugin->getInnerPluginFilesDir(), $plugin->getPluginFilesDir());
UTIL_File::chmodDir($plugin->getPluginFilesDir(), 0777, 0666);
} else {
if (!file_exists($plugin->getPluginFilesDir())) {
mkdir($plugin->getPluginFilesDir());
chmod($plugin->getPluginFilesDir(), 0777);
}
}
// create dir in userfiles
if (file_exists($plugin->getInnerUserFilesDir())) {
OW::getStorage()->copyDir($plugin->getInnerUserFilesDir(), $plugin->getUserFilesDir());
UTIL_File::chmodDir($plugin->getUserFilesDir(), 0777, 0666);
} else {
if (!file_exists($plugin->getUserFilesDir())) {
OW::getStorage()->mkdir($plugin->getUserFilesDir());
}
}
}