diff --git a/main/wiki/index.php b/main/wiki/index.php index 745d2afa4d..48e2685678 100644 --- a/main/wiki/index.php +++ b/main/wiki/index.php @@ -962,20 +962,18 @@ echo '
'; if ($action =='mactiveusers') { echo '
'.get_lang('MostActiveUsers').'
'; $sql='SELECT *, COUNT(*) AS NUM_EDIT FROM '.$tbl_wiki.' WHERE c_id = '.$course_id.' AND '.$groupfilter.$condition_session.' GROUP BY user_id'; - $allpages=Database::query($sql); + $allpages = Database::query($sql); //show table if (Database::num_rows($allpages) > 0) { - $row = array (); while ($obj = Database::fetch_object($allpages)) { - $userinfo=Database::get_user_info_from_id($obj->user_id); + $userinfo = Database::get_user_info_from_id($obj->user_id); $username = api_htmlentities(sprintf(get_lang('LoginX'), $userinfo['username']), ENT_QUOTES); - $row = array (); - + $row = array(); if ($obj->user_id <> 0) { $row[] = ''. Display::tag('span', api_htmlentities(api_get_person_name($userinfo['firstname'], $userinfo['lastname'])), array('title'=>$username)). - 'user_id). '&session_id='.api_htmlentities($_GET['session_id']).'&group_id='.api_htmlentities($_GET['group_id']).'">'; } else { $row[] = get_lang('Anonymous').' ('.$obj->user_ip.')'; @@ -1397,11 +1395,11 @@ if ($action =='searchpages') { echo '
'.get_lang('SearchPages').'
'; echo '
'; - if ($_GET['mode_table']) { + if (isset($_GET['mode_table'])) { if (! $_GET['SearchPages_table_page_nr']) { - $_GET['search_term']=$_POST['search_term']; - $_GET['search_content']=$_POST['search_content']; - $_GET['all_vers']=$_POST['all_vers']; + $_GET['search_term'] = $_POST['search_term']; + $_GET['search_content'] = $_POST['search_content']; + $_GET['all_vers'] = $_POST['all_vers']; } display_wiki_search_results(api_htmlentities($_GET['search_term']),api_htmlentities($_GET['search_content']),api_htmlentities($_GET['all_vers'])); } else { @@ -1943,7 +1941,7 @@ if (isset($action ) && $action =='edit') { // Page history -if ($action =='history' or $_POST['HistoryDifferences']) { +if ($action =='history' or isset($_POST['HistoryDifferences'])) { if (!$_GET['title']) { Display::display_error_message(get_lang("MustSelectPage")); exit; diff --git a/main/wiki/wiki.inc.php b/main/wiki/wiki.inc.php index d18a3ac431..2c8fefd9af 100644 --- a/main/wiki/wiki.inc.php +++ b/main/wiki/wiki.inc.php @@ -16,7 +16,8 @@ * @author Patrick Cool , Ghent University * @param */ -function createreflink($testvalue) { +function createreflink($testvalue) +{ $counter=''; while (!checktitle($testvalue.$counter)) { @@ -42,12 +43,15 @@ function checktitle($paramwk) { $course_id = api_get_course_int_id(); - $sql = 'SELECT * FROM '.$tbl_wiki.' WHERE c_id = '.$course_id.' AND reflink="'.Database::escape_string($paramwk).'" AND '.$groupfilter.$condition_session.''; + $sql = 'SELECT * FROM '.$tbl_wiki.' + WHERE + c_id = '.$course_id.' AND + reflink="'.Database::escape_string($paramwk).'" AND + '.$groupfilter.$condition_session.''; $result=Database::query($sql); $numberofresults=Database::num_rows($result); - - if ($numberofresults==0) // the value has not been found and is this available - { + // the value has not been found and is this available + if ($numberofresults==0) { return true; } else // the value has been found @@ -56,12 +60,12 @@ function checktitle($paramwk) { } } - /** * check wikilinks that has a page * @author Juan Carlos Raña **/ -function links_to($input) { +function links_to($input) +{ $input_array=preg_split("/(\[\[|\]\])/",$input,-1, PREG_SPLIT_DELIM_CAPTURE); $all_links = array(); @@ -82,8 +86,8 @@ function links_to($input) { } } $output=implode($all_links); - return $output; + return $output; } /** @@ -101,10 +105,12 @@ function detect_external_link($input) { * detect and add style to anchor links * @author Juan Carlos Raña Trabado **/ -function detect_anchor_link($input) { - $anchorlink='href="#'; +function detect_anchor_link($input) +{ + $anchorlink = 'href="#'; $anchorlinkStyle='class="wiki_anchor_link" href="#'; - $output=str_replace($anchorlink, $anchorlinkStyle, $input); + $output = str_replace($anchorlink, $anchorlinkStyle, $input); + return $output; } @@ -159,38 +165,36 @@ function detect_irc_link($input) { * Improvements [[]] and [[ | ]]by Juan Carlos Raña * Improvements internal wiki style and mark group by Juan Carlos Raña **/ -function make_wiki_link_clickable($input) { - global $_course; +function make_wiki_link_clickable($input) +{ $groupId = api_get_group_id(); - $session_id = api_get_session_id(); // TODO: check - $input_array=preg_split("/(\[\[|\]\])/",$input,-1, PREG_SPLIT_DELIM_CAPTURE); //now doubles brackets foreach ($input_array as $key=>$value) { //now doubles brackets - if ($input_array[$key-1]=='[[' AND $input_array[$key+1]==']]') { - /////////// TODO: metawiki - /* - if ($session_id==0) - { - if ($groupId==0) + if ($input_array[$key-1] == '[[' AND $input_array[$key+1]==']]') { + /////////// TODO: metawiki + /* + if ($session_id==0) { - $titleg_ex=''; + if ($groupId==0) + { + $titleg_ex=''; + } + else + { + $group_properties = GroupManager :: get_group_properties($groupId); + $group_name= $group_properties['name']; + $titleg_ex='('.$group_name.')'; + } } else { - $group_properties = GroupManager :: get_group_properties($groupId); - $group_name= $group_properties['name']; - $titleg_ex='('.$group_name.')'; + TODO:logic for sessions } - } - else - { - TODO:logic for sessions - } - */ - ///////// + */ + ///////// //now full wikilink if (api_strpos($value, "|") !== false){ @@ -213,7 +217,7 @@ function make_wiki_link_clickable($input) { // note: checkreflink checks if the link is still free. If it is not used then it returns true, if it is used, then it returns false. Now the title may be different if (checktitle(strtolower(str_replace(' ','_',$link)))) { $link = api_html_entity_decode($link); - $input_array[$key]=''.$title.''; + $input_array[$key]=''.$title.''; } else { $input_array[$key]=''.$title.''; } @@ -232,7 +236,7 @@ function make_wiki_link_clickable($input) { **/ function save_wiki() { - global $charset, $tbl_wiki, $_course, $tbl_wiki_conf; + global $tbl_wiki, $_course, $tbl_wiki_conf; // NOTE: visibility, visibility_disc and ratinglock_disc changes are not made here, but through the interce buttons @@ -258,7 +262,7 @@ function save_wiki() //cleaning config variables - if(!empty($_POST['task'])) { + if (!empty($_POST['task'])) { $_clean['task']= Database::escape_string($_POST['task']); } @@ -293,7 +297,7 @@ function save_wiki() $course_id = api_get_course_int_id(); $sql = "INSERT INTO ".$tbl_wiki." (c_id, page_id, reflink, title, content, user_id, group_id, dtime, assignment, comment, progress, version, linksto, user_ip, session_id) VALUES ($course_id, '".$_clean['page_id']."','".$_clean['reflink']."','".$_clean['title']."','".$_clean['content']."','".$_clean['user_id']."','".$groupId."','".$dtime."','".$_clean['assignment']."','".$_clean['comment']."','".$_clean['progress']."','".$_clean['version']."','".$_clean['linksto']."','".Database::escape_string($_SERVER['REMOTE_ADDR'])."', '".Database::escape_string($session_id)."')"; - $result = Database::query($sql); + Database::query($sql); $Id = Database::insert_id(); if ($Id > 0) { @@ -337,10 +341,11 @@ function restore_wikipage($r_page_id, $r_reflink, $r_title, $r_content, $r_group $sql="INSERT INTO ".$tbl_wiki." (c_id, page_id, reflink, title, content, user_id, group_id, dtime, assignment, comment, progress, version, linksto, user_ip, session_id) VALUES ($course_id, '".$r_page_id."','".$r_reflink."','".$r_title."','".$r_content."','".$r_user_id."','".$r_group_id."','".$r_dtime."','".$r_assignment."','".$r_comment."','".$r_progress."','".$r_version."','".$r_linksto."','".Database::escape_string($_SERVER['REMOTE_ADDR'])."','".Database::escape_string($session_id)."')"; - $result=Database::query($sql); + Database::query($sql); $Id = Database::insert_id(); api_item_property_update($_course, 'wiki', $Id, 'WikiAdded', api_get_user_id(), $r_group_id); check_emailcue($r_reflink, 'P', $r_dtime, $r_user_id); + return get_lang('PageRestored'); } @@ -390,7 +395,7 @@ function save_new_wiki() { // session_id $session_id = api_get_session_id(); // Unlike ordinary pages of pages of assignments. Allow create a ordinary page although there is a assignment with the same name - if($_clean['assignment']==2 || $_clean['assignment']==1) { + if ($_clean['assignment']==2 || $_clean['assignment']==1) { $page = str_replace(' ','_',$_POST['title']."_uass".$assig_user_id); } else { $page = str_replace(' ','_',$_POST['title']); @@ -405,8 +410,7 @@ function save_new_wiki() { } //re-check after strip_tags if the title is empty - if(empty($_clean['title']) || empty($_clean['reflink'])){ - + if(empty($_clean['title']) || empty($_clean['reflink'])) { return false; } @@ -497,9 +501,9 @@ function save_new_wiki() { * @return html code **/ function display_new_wiki_form() { - global $_course, $page; + global $page; ?> -