本文整理汇总了PHP中CCourse::SetPermission方法的典型用法代码示例。如果您正苦于以下问题:PHP CCourse::SetPermission方法的具体用法?PHP CCourse::SetPermission怎么用?PHP CCourse::SetPermission使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CCourse
的用法示例。
在下文中一共展示了CCourse::SetPermission方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$dbResult = CCourse::GetList(array(), array("CODE" => "BX-ADM001"));
$pathToService = str_replace("\\", "/", dirname(__FILE__));
if (!($arCourse = $dbResult->Fetch())) {
$pathToCourse = $serviceRelativePath . "/" . LANGUAGE_ID . "/course/";
$package = new CCourseImport($pathToCourse, array("s1"));
if (strlen($package->LAST_ERROR) > 0) {
return;
}
$success = $package->ImportPackage();
if ($success) {
$dbResult = CCourse::GetList(array(), array("CODE" => "BX-ADM001"));
$arCourse = $dbResult->Fetch();
}
}
if (isset($arCourse["ID"])) {
CCourse::SetPermission($arCourse["ID"], array("2" => "R"));
}
//Public files
CopyDirFiles($pathToService . "/" . LANGUAGE_ID . "/public", $_SERVER["DOCUMENT_ROOT"] . "/communication/learning", $rewrite = false, $recursive = true);
//Left menu
DemoSiteUtil::AddMenuItem("/communication/.left.menu.php", array(GetMessage("SERVICE_LEARNING"), "/communication/learning/", array(), array(), ""));
//Template
CopyDirFiles($pathToService . "/" . LANGUAGE_ID . "/template", $_SERVER["DOCUMENT_ROOT"] . BX_PERSONAL_ROOT . "/templates/learning", $rewrite = true, $recursive = true);
$obSite = CSite::GetByID("s1");
if (!($arSite = $obSite->Fetch())) {
return;
}
$arTemplates = array();
$obTemplate = CSite::GetTemplateList("s1");
while ($arTemplate = $obTemplate->Fetch()) {
$arTemplates[] = $arTemplate;