コード例 #1
0
ファイル: lib.createwiki.php プロジェクト: rhertzog/lcs
function create_wiki($gid = false, $wikiName = 'New wiki')
{
    $creatorId = claro_get_current_user_id();
    $tblList = claro_sql_get_course_tbl();
    $config = array();
    $config["tbl_wiki_properties"] = $tblList["wiki_properties"];
    $config["tbl_wiki_pages"] = $tblList["wiki_pages"];
    $config["tbl_wiki_pages_content"] = $tblList["wiki_pages_content"];
    $config["tbl_wiki_acls"] = $tblList["wiki_acls"];
    $con = Claroline::getDatabase();
    $acl = array();
    if ($gid) {
        $acl = WikiAccessControl::defaultGroupWikiACL();
    } else {
        $acl = WikiAccessControl::defaultCourseWikiACL();
    }
    $wiki = new Wiki($con, $config);
    $wiki->setTitle($wikiName);
    $wiki->setDescription('This is a sample wiki');
    $wiki->setACL($acl);
    $wiki->setGroupId($gid);
    $wikiId = $wiki->save();
    $wikiTitle = $wiki->getTitle();
    $mainPageContent = sprintf("This is the main page of the Wiki %s. Click on edit to modify the content.", $wikiTitle);
    $wikiPage = new WikiPage($con, $config, $wikiId);
    $wikiPage->create($creatorId, '__MainPage__', $mainPageContent, date("Y-m-d H:i:s"), true);
}
コード例 #2
0
ファイル: wiki.php プロジェクト: rhertzog/lcs
         $wikiACL = $wiki->getACL();
         $groupId = $wiki->getGroupId();
     } else {
         $message = get_lang("Invalid Wiki Id");
         $action = 'error';
     }
     break;
     // execute edit
 // execute edit
 case 'exEdit':
     if ($wikiId == 0) {
         $wiki = new Wiki($con, $config);
         $wiki->setTitle($wikiTitle);
         $wiki->setDescription($wikiDesc);
         $wiki->setACL($wikiACL);
         $wiki->setGroupId($groupId);
         $wikiId = $wiki->save();
         //notify wiki modification
         $eventNotifier->notifyCourseEvent('wiki_added', claro_get_current_course_id(), claro_get_current_tool_id(), $wikiId, claro_get_current_group_id(), '0');
         $mainPageContent = sprintf(get_lang("This is the main page of the Wiki %s. Click on '''Edit''' to modify the content."), $wikiTitle);
         $wikiPage = new WikiPage($con, $config, $wikiId);
         if ($wikiPage->create($creatorId, '__MainPage__', $mainPageContent, date("Y-m-d H:i:s"), true)) {
             $message = get_lang("Wiki creation succeed");
             $dialogBox->success($message);
         } else {
             $message = get_lang("Wiki creation failed");
             $dialogBox->error($message . ":" . $wikiPage->getError());
         }
     } elseif ($wikiStore->wikiIdExists($wikiId)) {
         $wiki = $wikiStore->loadWiki($wikiId);
         $wiki->setTitle($wikiTitle);
コード例 #3
0
ファイル: index.php プロジェクト: nikosv/openeclass
                $wikiACL = array();
                $wikiACL['course_read'] = true;
                $wikiACL['course_edit'] = false;
                $wikiACL['course_create'] = false;
                $wikiACL['group_read'] = true;
                $wikiACL['group_edit'] = true;
                $wikiACL['group_create'] = true;
                $wikiACL['other_read'] = false;
                $wikiACL['other_edit'] = false;
                $wikiACL['other_create'] = false;

                $wiki = new Wiki();
                $wiki->setTitle($langGroup . " " . $group_num . " - Wiki");
                $wiki->setDescription('');
                $wiki->setACL($wikiACL);
                $wiki->setGroupId($id);
                $wikiId = $wiki->save();

                $mainPageContent = $langWikiMainPageContent;

                $wikiPage = new WikiPage($wikiId);
                $wikiPage->create($uid, '__MainPage__', $mainPageContent, '', date("Y-m-d H:i:s"), true);
                /*             * ************************************ */

                Log::record($course_id, MODULE_ID_GROUPS, LOG_INSERT, array('id' => $id,
                                                                            'name' => "$langGroup $group_num",
                                                                            'max_members' => $group_max,
                                                                            'secret_directory' => $secretDirectory));
            }
            if ($group_quantity == 1) {
                $message = "$group_quantity $langGroupAdded";