]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-13404 reverted - missing file and other minor problems
authorskodak <skodak>
Fri, 22 Feb 2008 19:53:48 +0000 (19:53 +0000)
committerskodak <skodak>
Fri, 22 Feb 2008 19:53:48 +0000 (19:53 +0000)
22 files changed:
backup/backuplib.php
blocks/blog_tags/block_blog_tags.php
blocks/tag_flickr/block_tag_flickr.php
blocks/tag_youtube/block_tag_youtube.php
blocks/tags/block_tags.php
blog/edit.php
blog/edit_form.php
blog/header.php
blog/lib.php
lang/en_utf8/blog.php
lib/moodlelib.php
tag/edit.php
tag/edit_form.php
tag/index.php
tag/lib.php
tag/manage.php
tag/search.php
theme/standard/styles_layout.css
user/editadvanced.php
user/editlib.php
user/tag.php
user/view.php

index 9cf508fcece1008ebb687f063c3be2ccf85f129c..3d6297e698866322b03bcae56912197c87720e4c 100644 (file)
 
                 //Check if we have user tags to backup
                 if (!empty($CFG->usetags)) {
-                    if ($tags = tag_get_tags(array('type'=>'user', 'id'=>$user->id))) { //This return them ordered by default
+                    if ($tags = get_item_tags('user', $user->id)) { //This return them ordered by default
                         //Start USER_TAGS tag
                         fwrite ($bf,start_tag("USER_TAGS",4,true));
                         //Write user tags fields
index 693b4efc5df78c085e33cbcbfb93050b4bb04e6c..c92a863e6b2e9f343b9bfe5636b125c44dfe4bde 100644 (file)
@@ -161,7 +161,7 @@ class block_blog_tags extends block_base {
                 $this->content->text .= '<li><a href="'.$link.'" '.
                                         'class="'.$tag->class.'" '.
                                         'title="'.get_string('numberofentries','blog',$tag->ct).'">'.
-                                        tag_display_name($tag) .'</a></li> ';
+                                        $tag->name.'</a></li> ';
             }
             $this->content->text .= "\n</ul>\n";
 
index faf952a8c4bcfbb26f30c80c2d7f61a6baaa93d1..d5be5b9c17e817698e728c0e50e5480a71034a09 100644 (file)
@@ -39,23 +39,12 @@ class block_tag_flickr extends block_base {
             return $this->content;
         }
 
-        $tagid = optional_param('id', 0, PARAM_INT);   // tag id - for backware compatibility
-        $tag = optional_param('tag', '', PARAM_TAG); // tag 
-
-        if ($tag) {
-            $tag_object = tag_get_id($tag, TAG_RETURN_OBJECT);
-        } elseif (!$tag && $tagid) {
-            $tag_object = tag_get_tag_by_id($tagid);
-        } else {
-            // can't display the block if no tag was submitted! 
-            // todo: something useful here.
-            error('Missing tag parameter');
-        }
+        $tagid       = optional_param('id',     0,      PARAM_INT);   // tag id
 
         //include related tags in the photo query ?
-        $tags_csv = html_entity_decode(tag_display_name($tag_object));
+        $tags_csv = tag_display_name(tag_by_id($tagid));
         if (!empty($this->config->includerelatedtags)) {
-            $tags_csv .= ',' . tag_get_related_tags_csv(tag_get_related_tags(array('type'=>'tag','id'=>$tag_object->id)), TAG_RETURN_TEXT);
+            $tags_csv .= ',' . tag_names_csv( get_item_tags('tag',$tagid));
         }
         $tags_csv = urlencode($tags_csv);
 
index 1f439e5a25e63d6760d44201b7dab849870cceb6..9593202476239fb13b7c25a11025be28dc23b149 100644 (file)
@@ -78,29 +78,18 @@ class block_tag_youtube extends block_base {
 
     function get_videos_by_tag(){
 
-        $tagid = optional_param('id', 0, PARAM_INT);   // tag id - for backware compatibility
-        $tag = optional_param('tag', '', PARAM_TAG); // tag 
-
-        if ($tag) {
-            $tag_object = tag_get_id($tag, TAG_RETURN_OBJECT);
-        } elseif (!$tag && $tagid) {
-            $tag_object = tag_get_tag_by_id($tagid);
-        } else {
-            // can't display the block if no tag was submitted! 
-            // todo: something useful here.
-            error('Missing tag parameter');
-        }
+        $tagid       = optional_param('id',     0,      PARAM_INT);   // tag id
 
-        $query_tag = html_entity_decode(tag_display_name($tag_object));
+        $query_tag = tag_display_name(tag_by_id($tagid));
         $query_tag = urlencode($query_tag);
 
         $numberofvideos = DEFAULT_NUMBER_OF_VIDEOS;
-        if ( !empty($this->config->numberofvideos) ) {
+        if( !empty($this->config->numberofvideos)) {
             $numberofvideos = $this->config->numberofvideos;
         }
 
         $request = 'http://www.youtube.com/api2_rest?method=youtube.videos.list_by_tag';
-        $request .= '&dev_id='. YOUTUBE_DEV_KEY;
+        $request .= '&dev_id=' . YOUTUBE_DEV_KEY;
         $request .= "&tag={$query_tag}";
         $request .= "&page=1";
         $request .= "&per_page={$numberofvideos}";
@@ -110,20 +99,9 @@ class block_tag_youtube extends block_base {
 
     function get_videos_by_tag_and_category(){
 
-        $tagid = optional_param('id', 0, PARAM_INT);   // tag id - for backware compatibility
-        $tag = optional_param('tag', '', PARAM_TAG); // tag 
-
-        if ($tag) {
-            $tag_object = tag_get_id($tag, TAG_RETURN_OBJECT);
-        } elseif (!$tag && $tagid) {
-            $tag_object = tag_get_tag_by_id($tagid);
-        } else {
-            // can't display the block if no tag was submitted! 
-            // todo: something useful here.
-            error('Missing tag parameter');
-        }
+        $tagid       = optional_param('id',     0,      PARAM_INT);   // tag id
 
-        $query_tag = html_entity_decode(tag_display_name($tag_object));
+        $query_tag = tag_display_name(tag_by_id($tagid));
         $query_tag = urlencode($query_tag);
 
         $numberofvideos = DEFAULT_NUMBER_OF_VIDEOS;
@@ -180,23 +158,18 @@ class block_tag_youtube extends block_base {
         $text .= '<ul class="yt-video-entry unlist img-text">';
         $videos = $xmlobj['ut_response']['video_list']['video'];
 
-        if (is_array($videos) ) {
-            foreach($videos as $video){
-                $text .= '<li>';
-                $text .= '<div class="clearfix">';
-                $text .= '<a href="'. s($video['url']) . '">';
-                $text .= '<img alt="" class="youtube-thumb" src="'. $video['thumbnail_url'] .'" /></a>';
-                $text .= '</div><span><a href="'. s($video['url']) . '">'.s($video['title']).'</a></span>';
-                $text .= '<div>';
-                $text .= format_time($video['length_seconds']);
-                $text .= "</div></li>\n";
-            }
-        } else { 
-            // if youtube is offline, or for whatever reason the previous
-            // call doesn't work... 
-            //add_to_log(SITEID, 'blocks/tag_youtube', 'problem in getting videos off youtube');
+        foreach($videos as $video){
+            $text .= '<li>';
+            $text .= '<div class="clearfix">';
+            $text .= '<a href="'. s($video['url']) . '">';
+            $text .= '<img alt="" class="youtube-thumb" src="'. $video['thumbnail_url'] .'" /></a>';
+            $text .= '</div><span><a href="'. s($video['url']) . '">'.s($video['title']).'</a></span>';
+            $text .= '<div>';
+            $text .= format_time($video['length_seconds']);
+            $text .= "</div></li>\n";
         }
         $text .= "</ul><div class=\"clearer\"></div>\n";
+
         return $text;
     }
 }
index 210ebee3d585960ee02430027ac2daae104ead3a..28211a73d7083b37772679c74ad7c1e0b15d713e 100644 (file)
@@ -59,9 +59,9 @@ class block_tags extends block_base {
 
         /// Get a list of tags
 
-        require_once($CFG->dirroot.'/tag/taglib.php');
+        require_once($CFG->dirroot.'/tag/lib.php');
 
-        $this->content->text = tag_print_cloud($this->config->numberoftags, false, 170, 70, true);
+        $this->content->text = print_tag_cloud(popular_tags_count($this->config->numberoftags), false, 170, 70, true);
 
         return $this->content;
     }
index 1664c06aa04265fc5c35a0580c8802c9f09fbc00..1262f5437715ed5637ba60db31c8a9549c5d26ff 100755 (executable)
@@ -119,12 +119,18 @@ switch ($action) {
         $post->action       = $action;
         $strformheading = get_string('updateentrywithid', 'blog');
 
-        if ($itemptags = html_entity_decode(tag_get_tags_csv(array('type'=>'post', 'id'=>$post->id), TAG_RETURN_TEXT, 'default'))) {
-            $post->ptags = $itemptags;
+        if ($itemptags = get_item_tags('post', $post->id, 'ti.ordering ASC', 'id,rawname', '', '', 'default')) {
+            if ($ptags = records_to_menu($itemptags, 'id','rawname')) {           
+                $post->ptags = implode(', ', $ptags);
+            } else {
+                $post->ptags = '';
+            }
         }
         
-        if ($itemotags = tag_get_tags_array(array('type'=>'post', 'id'=>$post->id), 'official')) {
-            $post->otags = array_keys($itemotags);
+        if ($itemotags = get_item_tags('post', $post->id, 'ti.ordering ASC', 'id,rawname', '', '', 'official')) {
+            if ($otags = records_to_menu($itemotags, 'id','rawname')) {
+                $post->otags = array_keys($otags);
+            }
         }
     break;
     default :
@@ -225,7 +231,7 @@ function do_delete($post) {
 
     $status = delete_records('post', 'id', $post->id);
     //$status = delete_records('blog_tag_instance', 'entryid', $post->id) and $status;
-    tag_set('post', $post->id, array());
+    untag_an_item('post', $post->id);
     
     blog_delete_old_attachments($post);
 
@@ -287,7 +293,7 @@ function do_edit($post, $blogeditform) {
         
         //delete_records('blog_tag_instance', 'entryid', $post->id);
         //delete_records('tag_instance', 'itemid', $post->id, 'itemtype', 'blog');
-        //untag_an_item('post', $post->id);
+        untag_an_item('post', $post->id);
         // add them back
         add_tags_info($post->id);
 
@@ -303,19 +309,38 @@ function do_edit($post, $blogeditform) {
  * @param int postid - id of the blog
  */
 function add_tags_info($postid) {
-    
-    $tags = array();
+
+    global $USER;
+
+    $post = get_record('post', 'id', $postid);
+
+    /// Attach official tags
     if ($otags = optional_param('otags', '', PARAM_INT)) {
-        foreach ($otags as $tagid) {
-            // TODO : make this use the tag name in the form
-            $tag = tag_get_tag_by_id($tagid);
-            $tags[] = $tag->name;
+        foreach ($otags as $otag) {
+            $tag->tagid = $otag;
+            //insert_record('blog_tag_instance', $tag);
+            tag_an_item('post', $postid, $otag, 'official'); 
         }
     }
 
-    $manual_tags = optional_param('ptags', '', PARAM_NOTAGS);
-    $tags = array_merge($tags, explode(',', $manual_tags));
-    
-    tag_set('post', $postid, $tags);
+    /// Attach Personal Tags
+    if ($ptags = optional_param('ptags', '', PARAM_NOTAGS)) {
+        $ptags = explode(',', $ptags);
+        foreach ($ptags as $ptag) {
+            $ptag = trim($ptag);
+            // check for existence
+            // it does not matter whether it is an offical tag or personal tag
+            // we do not want to have 1 copy of offical tag and 1 copy of personal tag (for the same tag)
+            if ($ctag = tag_by_name($ptag)) {
+                tag_an_item('post', $postid, $ctag->id);
+            } else { // create a personal tag
+                if ($tagid = tag_create($ptag)) {
+                    if ($tagid = array_shift($tagid)) {
+                        tag_an_item('post', $postid, $tagid);
+                    }
+                }
+            }
+        }
+    }
 }
 ?>
index f6426fb745cd2e2ac5b85aa7586a3825d5ac055f..510edc5da43c62c25abb83e151591706026ff1f1 100644 (file)
@@ -34,8 +34,8 @@ class blog_edit_form extends moodleform {
 
 
         if (!empty($CFG->usetags)) {
-            $mform->addElement('header', 'tagshdr', get_string('tags', 'tag'));
-            $mform->createElement('select', 'otags', get_string('otags','tag'));
+            $mform->addElement('header', 'tagshdr', get_string('tags', 'blog'));
+            $mform->createElement('select', 'otags', get_string('otags','blog'));
 
             $js_escape = array(
                 "\r"    => '\r',
@@ -46,11 +46,28 @@ class blog_edit_form extends moodleform {
                 '\\'    => '\\\\'
             );
 
-            $otagsselEl =& $mform->addElement('select', 'otags', get_string('otags', 'tag'), array(), 'size="5"');
+            $otagsselEl =& $mform->addElement('select', 'otags', get_string('otags', 'blog'), array(), 'size="5"');
             $otagsselEl->setMultiple(true);
             $this->otags_select_setup();
 
-            $mform->addElement('textarea', 'ptags', get_string('ptags', 'tag'), array('cols'=>'40', 'rows'=>'5'));
+            if (has_capability('moodle/blog:manageofficialtags', $sitecontext)){
+                $deleteotagsmsg = strtr(get_string('deleteotagswarn', 'blog'), $js_escape);
+                $mform->registerNoSubmitButton('deleteotags');
+                $mform->addElement('submit', 'deleteotags', get_string('delete'),
+                                array('onclick'=>"return confirm('$deleteotagsmsg');"));
+                $mform->disabledIf('deleteotags', 'otags[]', 'noitemselected');
+                $mform->setAdvanced('deleteotags');
+
+                $mform->registerNoSubmitButton('addotags');
+                $otagsgrp = array();
+                $otagsgrp[] =& $mform->createElement('text', 'otagsadd', get_string('addotags', 'blog'));
+                $otagsgrp[] =& $mform->createElement('submit', 'addotags', get_string('add'));
+                $mform->addGroup($otagsgrp, 'otagsgrp', get_string('addotags','blog'), array(' '), false);
+                $mform->setType('otagsadd', PARAM_NOTAGS);
+                $mform->setAdvanced('otagsgrp');
+            }
+
+            $mform->addElement('textarea', 'ptags', get_string('ptags', 'blog'), array('cols'=>'40', 'rows'=>'5'));
             $mform->setType('ptagsadd', PARAM_NOTAGS);
         }
         
@@ -82,6 +99,9 @@ class blog_edit_form extends moodleform {
         }
         if ($otags = get_records_sql_menu('SELECT id, name from '.$CFG->prefix.'tag WHERE tagtype=\'official\' ORDER by name ASC')){
             $otagsselect->loadArray($otags);
+        } else {
+            // removing this causes errors
+            //$mform->removeElement('otags');
         }
     }
 
index deb58421fc68f34d624124b08830577d78d002f3..0200e9b0128be78366d84a20d3dfe0f90e81e2ff 100755 (executable)
@@ -84,8 +84,11 @@ if ($editing) {
 
 if (!empty($tagid)) {
     $taginstance = get_record('tag', 'id', $tagid);
-} elseif (!empty($tag)) {
-    $taginstance = tag_id($tag);
+} else {
+    $tagid = '';
+    if (!empty($tag)) {
+        $taginstance = tag_id($tag);
+    }
 }
 
 /// navigations
index 76c43eb5d5c72e8f222f8e41b2f9a6ba74ce685f..2e1e9f3d57c51c92bf366258d5744ccaeef8921f 100755 (executable)
         echo $attachedimages;
     /// Links to tags
 
-        if ( !empty($CFG->usetags) && ($blogtags = tag_get_tags_csv(array('type'=>'post', 'id'=>$blogEntry->id))) ) {
+        /*
+        if ($blogtags = get_records_sql('SELECT t.* FROM '.$CFG->prefix.'tags t, '.$CFG->prefix.'blog_tag_instance ti
+                                     WHERE t.id = ti.tagid
+                                     AND ti.entryid = '.$blogEntry->id)) {
+        */
+        if (!empty($CFG->usetags) && ($blogtags = get_item_tags('post', $blogEntry->id))) {
             echo '<div class="tags">';
             if ($blogtags) {
-                print(get_string('tags', 'tag') .': '. $blogtags);
-           }
+                print_string('tags');
+                echo ': ';
+                foreach ($blogtags as $key => $blogtag) {
+                    //$taglist[] = '<a href="index.php?filtertype='.$filtertype.'&amp;filterselect='.$filterselect.'&amp;tagid='.$blogtag->id.'">'.tag_display_name($blogtag).'</a>';  // Blog tag only
+                    $taglist[] = '<a href="'.$CFG->wwwroot.'/tag/index.php?id='.$blogtag->id.'">'.tag_display_name($blogtag).'</a>';  // General tag link
+                }
+                echo implode(', ', $taglist);
+            }
             echo '</div>';
         } 
 
index 51a2c1afc533e6258efbdf5b5e84fb8d6307734c..4dd4b349d56d58f05987552087bb60a7d9f73f53 100755 (executable)
@@ -3,6 +3,8 @@
 
 
 $string['addnewentry'] = 'Add a new entry';
+$string['addotags'] = 'Add official tags';
+$string['addptags'] = 'Add user-defined tags';
 $string['backupblogshelp'] = 'If enabled then blogs will be included in SITE automated backups';
 $string['blockmenutitle'] = 'Blog Menu';
 $string['blocktagstitle'] = 'Blog Tags';
@@ -33,8 +35,10 @@ $string['norighttodeletetag'] = 'You have no rights to delete this tag - $a';
 $string['notallowedtoedit'] = 'You are not allowed to edit this entry';
 $string['numberofentries'] = 'Entries: $a';
 $string['numberoftags'] = 'Number of tags to display';
+$string['otags'] = 'Official tags';
 $string['pagesize'] = 'Number of blog entries per Page';
 $string['personalblogs'] = 'Users can only see their own blog';
+$string['ptags'] = 'User defined tags (Comma separated)';
 $string['publishto'] = 'Publish to';
 $string['publishtonoone'] = 'Yourself (draft)';
 $string['publishtosite'] = 'Anyone on this site';
index 8e50272e34aecd95df659778fd171f201ad2a976..213d5c2d92ec1cc9153b7e5ebdeb00503bfbe5bb 100644 (file)
@@ -153,6 +153,11 @@ define('PARAM_FILE',     0x0010);
  */
 define('PARAM_TAG',   0x0011);
 
+/**
+ * PARAM_TAGLIST - list of tags separated by commas (interests, blogs, etc.)
+ */
+define('PARAM_TAGLIST',   0x0012);
+
 /**
  * PARAM_PATH - safe relative path name, all dangerous chars are stripped, protects against XSS, SQL injections and directory traversals
  * note: the leading slash is not removed, window drive letter is not allowed
@@ -254,9 +259,7 @@ define ('BLOG_GLOBAL_LEVEL', 5);
 /**
  * Tag constanst
  */
-//To prevent problems with multibytes strings, this should not exceed the 
-//length of "varchar(255) / 3 (bytes / utf-8 character) = 85".
-define('TAG_MAX_LENGTH', 50); 
+define('TAG_MAX_LENGTH', 50);
 
 if (!defined('SORT_LOCALE_STRING')) { // PHP < 4.4.0 - TODO: remove in 2.0
     define('SORT_LOCALE_STRING', SORT_STRING);
@@ -365,6 +368,7 @@ function optional_param($parname, $default=NULL, $type=PARAM_CLEAN) {
  * @uses PARAM_PEM
  * @uses PARAM_BASE64
  * @uses PARAM_TAG
+ * @uses PARAM_TAGLIST
  * @uses PARAM_SEQUENCE
  * @param mixed $param the variable we are cleaning
  * @param int $type expected format of param after cleaning.
@@ -557,14 +561,35 @@ function clean_param($param, $type) {
             }
 
         case PARAM_TAG:
-            //as long as magic_quotes_gpc is used, a backslash will be a 
-            //problem, so remove *all* backslash.
-            $param = str_replace('\\', '', $param);
-            //convert many whitespace chars into one
+            //first fix whitespace
             $param = preg_replace('/\s+/', ' ', $param);
+            //remove blacklisted ASCII ranges of chars - security FIRST - keep only ascii letters, numbers and spaces
+            //the result should be safe to be used directly in html and SQL
+            $param = preg_replace("/[\\000-\\x1f\\x21-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]/", '', $param);
+            //now remove some unicode ranges we do not want
+            $param = preg_replace("/[\\x{80}-\\x{bf}\\x{d7}\\x{f7}]/u", '', $param);
+            //cleanup the spaces
+            $param = preg_replace('/ +/', ' ', $param);
+            $param = trim($param);
             $textlib = textlib_get_instance();
-            $param = $textlib->substr(trim($param), 0, TAG_MAX_LENGTH);
-            return $param;
+            $param = $textlib->substr($param, 0, TAG_MAX_LENGTH);
+            //numeric tags not allowed
+            return is_numeric($param) ? '' : $param;
+
+        case PARAM_TAGLIST:
+            $tags = explode(',', $param);
+            $result = array();
+            foreach ($tags as $tag) {
+                $res = clean_param($tag, PARAM_TAG);
+                if ($res != '') {
+                    $result[] = $res;
+                }
+            }
+            if ($result) {
+                return implode(',', $result);
+            } else {
+                return '';
+            }
 
         default:                 // throw error, switched parameters in optional_param or another serious problem
             error("Unknown parameter type: $type");
index 33294df4e23887fc8f7429f4c81320e8bac7723d..b91975787543fc7840f65a0e953a76bd65582148 100644 (file)
@@ -12,15 +12,9 @@ if (empty($CFG->usetags)) {
     error(get_string('tagsaredisabled', 'tag'));
 }
 
-$tag_id = optional_param('id', 0, PARAM_INT);
-$tag_name = optional_param('tag', '', PARAM_TAG);
-if ($tag_name) {
-    $tag = array_shift(tag_get_id($tag_name, TAG_RETURN_OBJECT));
-} elseif ( $tag_id ) {
-    $tag = tag_get_tag_by_id($tag_id);
-} else {
-    error('A required parameter was missing');
-}
+$tagid   = required_param('id', PARAM_INT);   // user id
+
+$tag     = tag_by_id($tagid);
 $tagname = tag_display_name($tag);
 
 //Editing a tag requires moodle/tag:edit capability
@@ -28,8 +22,7 @@ $systemcontext   = get_context_instance(CONTEXT_SYSTEM);
 require_capability('moodle/tag:edit', $systemcontext);
 
 // set the relatedtags field of the $tag object that will be passed to the form
-//$tag->relatedtags = tag_names_csv(get_item_tags('tag',$tagid));
-$tag->relatedtags = tag_get_related_tags_csv(tag_get_related_tags($tag->id), TAG_RETURN_TEXT);
+$tag->relatedtags = tag_names_csv(get_item_tags('tag',$tagid));
 
 if (can_use_html_editor()) {
     $options = new object();
@@ -54,10 +47,9 @@ if ($tagnew = $tagform->get_data()) {
     }
 
     //updated related tags
-    tag_set('tag', $tagnew->id, explode(',', trim($tagnew->relatedtags)));
-    //var_dump($tagnew); die();
+    update_item_tags('tag', $tagnew->id, $tagnew->relatedtags);
 
-    redirect($CFG->wwwroot.'/tag/index.php?tag='.rawurlencode($tag->name)); // must use $tag here, as the name isn't in the edit form
+    redirect($CFG->wwwroot.'/tag/index.php?id='.$tagnew->id);
 }
 
 
index e96429439425fb7144e02cd81dd42a9b3c128feb..ec954fdbbabeff896e7c18137487386851dbb50f 100644 (file)
@@ -18,7 +18,7 @@ function definition () {
 
         $mform->addElement('html', '<br/><div id="relatedtags-autocomplete-container">');
         $mform->addElement('textarea', 'relatedtags', get_string('relatedtags','tag'), 'cols="50" rows="3"');
-        $mform->setType('relatedtags', PARAM_TAG);
+        $mform->setType('relatedtags', PARAM_TAGLIST);
         $mform->addElement('html', '</div>');
         $mform->addElement('html', '<div id="relatedtags-autocomplete"></div>');
 
index f538442f0929e412f204f1a740c2eb458397124c..921caf8e1f890328cbd43e3aca5c6b579610adfc 100644 (file)
@@ -12,18 +12,14 @@ if (empty($CFG->usetags)) {
     error(get_string('tagsaredisabled', 'tag'));
 }
 
-$tagid       = optional_param('id', 0, PARAM_INT); // tag id
-$tag_name    = optional_param('tag', '', PARAM_TAG); // tag 
-if ($tag_name) {
-    $tag = tag_get_id($tag_name, TAG_RETURN_OBJECT);
-} elseif ($tagid) {
-    $tag = tag_get_tag_by_id($tagid); // for backward compatibility
-}
+$tagid       = optional_param('id',     0,      PARAM_INT);   // tag id
 $edit        = optional_param('edit', -1, PARAM_BOOL);
-$userpage    = optional_param('userpage', 0, PARAM_INT); // which page to show
+$userpage    = optional_param('userpage', 0, PARAM_INT);      // which page to show
 $perpage     = optional_param('perpage', 24, PARAM_INT);
 
-if (!isset($tag) || !$tag->id) {
+$tag      = tag_by_id($tagid);
+
+if (!$tag) {
     redirect($CFG->wwwroot.'/tag/search.php');
 }
 
@@ -36,8 +32,10 @@ if (($edit != -1) and $PAGE->user_allowed_editing()) {
     $USER->editing = $edit;
 }
 
+
 $PAGE->print_header();
 
+
 echo '<table border="0" cellpadding="3" cellspacing="0" width="100%" id="layout-table">';
 echo '<tr valign="top">';
 
@@ -51,6 +49,8 @@ if (blocks_have_content($pageblocks, BLOCK_POS_LEFT) || $PAGE->user_is_editing()
     echo '</td>';
 }
 
+
+
 //----------------- middle column -----------------
 
 echo '<td valign="top" id="middle-column">';
@@ -59,14 +59,17 @@ $tagname  = tag_display_name($tag);
 
 $systemcontext   = get_context_instance(CONTEXT_SYSTEM);
 if ($tag->flag > 0 && has_capability('moodle/tag:manage', $systemcontext)) {
-    $tagname =  '<span class="flagged-tag">' . rawurlencode($tagname) . '</span>';
+    $tagname =  '<span class="flagged-tag">' . $tagname . '</span>';
 }
 
 print_heading($tagname, '', 2, 'headingblock header tag-heading');
-tag_print_management_box($tag);
-tag_print_description_box($tag);
 
-$usercount = tag_record_count('user', $tag->id);
+print_tag_management_box($tag);
+
+print_tag_description_box($tag);
+
+
+$usercount = count_items_tagged_with($tag->id,'user');
 
 if ($usercount > 0) {
 
@@ -79,10 +82,16 @@ if ($usercount > 0) {
     $baseurl = $CFG->wwwroot.'/tag/index.php?id=' . $tag->id;
 
     print_paging_bar($usercount, $userpage, $perpage, $baseurl.'&amp;', 'userpage');
-    tag_print_tagged_users_table($tag, $userpage * $perpage, $perpage);
+
+    print_tagged_users_table($tag, $userpage * $perpage, $perpage);
+
     print_box_end();
+
 }
 
+
+
+
 // Print last 10 blogs
 
 // I was not able to use get_items_tagged_with() because it automatically 
index d7ae3c6d0289ee3d7894655214f7e39edcb5dfa2..d6a1b53323973236085998a1ee55afc5761543b6 100644 (file)
@@ -44,6 +44,8 @@ define('TAG_RETURN_HTML', 3);
 define('TAG_CASE_LOWER', 0);
 define('TAG_CASE_ORIGINAL', 1);
 
+require_once($CFG->dirroot .'/tag/locallib.php');
+
 ///////////////////////////////////////////////////////
 /////////////////// PUBLIC TAG API ////////////////////
 
index 2a130e26a880f230138a7a14c57fe993607946ed..2d8b5caffe9dad1d3fe98dc121a0e290da007119 100644 (file)
@@ -35,7 +35,7 @@ $notice = '';
 
 // get all the possible tag types from db
 $existing_tagtypes = array();
-if ($ptypes = get_records_sql("SELECT DISTINCT(tagtype) FROM {$CFG->prefix}tag")) {
+if ($ptypes = get_records_sql("SELECT DISTINCT(tagtype), id FROM {$CFG->prefix}tag")) {
     foreach ($ptypes as $ptype) {
         $existing_tagtypes[$ptype->tagtype] = $ptype->tagtype;
     }
@@ -49,9 +49,11 @@ switch($action) {
         if (!data_submitted() or !confirm_sesskey()) {
             break;
         }
-        
-        $str_tagschecked = implode(', ', tag_get_name($tagschecked));
-        tag_delete($tagschecked);
+        $str_tagschecked = tag_name_from_string(implode($tagschecked, ','));
+        $str_tagschecked = str_replace(',', ', ', $str_tagschecked);
+
+        tag_delete(implode($tagschecked, ','));
+
         $notice = $str_tagschecked.' --  '.get_string('deleted','tag');
         break;
 
@@ -59,9 +61,12 @@ switch($action) {
         if (!data_submitted() or !confirm_sesskey()) {
             break;
         }
-        $str_tagschecked = implode(', ', tag_get_name($tagschecked));
-        tag_unset_flag($tagschecked);
-        $notice = $str_tagschecked .' -- '. get_string('reset', 'tag');
+        $str_tagschecked = tag_name_from_string(implode($tagschecked, ','));
+        $str_tagschecked = str_replace(',', ', ', $str_tagschecked);
+
+        tag_flag_reset(implode($tagschecked, ','));
+
+        $notice = $str_tagschecked.' -- '.get_string('reset','tag');
         break;
 
     case 'changetype':
@@ -70,6 +75,7 @@ switch($action) {
         }
 
         $changed = array();
+
         foreach ($tagschecked as $tag_id) {
             if (!array_key_exists($tagtypes[$tag_id], $existing_tagtypes)) {
                 //can not add new types here!!
@@ -77,14 +83,19 @@ switch($action) {
             }
 
             // update tag type;
-            if (tag_type_set($tag_id, $tagtypes[$tag_id])) {
+            $tag = tag_by_id($tag_id);
+            $tag->timemodified = time();
+            $tag->tagtype = $tagtypes[$tag_id];
+
+            if (update_record('tag', $tag)) {
                 $changed[] = $tag_id;
             }
         }
 
-        if (!empty($changed)) {
-            $str_changed = implode(', ', tag_get_name($changed));
-            $notice = $str_changed .' --  '. get_string('typechanged','tag');
+        if ($changed) {
+            $str_changed = tag_name_from_string(implode($changed, ','));
+            $str_changed = str_replace(',', ', ', $str_changed);
+            $notice = $str_changed.' --  '.get_string('typechanged','tag');
         }
         break;
 
@@ -92,12 +103,12 @@ switch($action) {
         if (!data_submitted() or !confirm_sesskey()) {
             break;
         }
-        
+
         $tags_names_changed = array();
+
         foreach ($tagschecked as $tag_id) {
             if ($newnames[$tag_id] != '') {
-                if (! $tags_names_updated[] = tag_rename($tag_id, $newnames[$tag_id]) ) {
-                    // if tag already exists, or is not a valid tag name, etc.
+                if (tag_exists($newnames[$tag_id])) {
                     $err_notice .= $newnames[$tag_id]. '-- ' . get_string('namesalreadybeeingused','tag').'<br />';
                 } else {
                     $tags_names_changed[$tag_id] = $newnames[$tag_id];
@@ -105,25 +116,14 @@ switch($action) {
             }
         }
 
+        $tags_names_updated = tag_update_name($tags_names_changed);
+
         //notice to inform what tags had their names effectively updated
-        if ($tags_names_changed){
-            $notice = implode($tags_names_changed, ', ');
+        if ($tags_names_updated){
+            $notice = implode($tags_names_updated, ', ');
             $notice .= ' -- ' . get_string('updated','tag');
         }
         break;
-    case 'addofficialtag':
-        $new_otags = explode(',', optional_param('otagsadd', '', PARAM_TAG));
-        $notice = '';
-        foreach ( $new_otags as $new_otag ) {
-            if ( $new_otag_id = tag_get_id($new_otag) ) {
-                // tag exists, change the type
-                tag_set_type($new_otag_id, 'official');
-            } else {
-                tag_add($new_otag, 'official');
-            }
-            $notice .= get_string('addedotag', 'tag', $new_otag) .' ';
-        }
-        break;
 }
 
 echo '<br/>';
@@ -132,27 +132,18 @@ if ($err_notice) {
     notify($err_notice, 'red');
 }
 if ($notice) {
-    notify($notice, 'green');
+    notify($notice , 'green');
 }
 
-// small form to add an official tag
-print('<form class="tag-management-form" method="post" action="'.$CFG->wwwroot.'/tag/manage.php">');
-print('<input type="hidden" name="action" value="addofficialtag">');
-print('<div class="tag-management-form generalbox"><label class="accesshide" for="id_otagsadd">'. get_string('addotags', 'tag') .'</label>'.
-    '<input name="otagsadd" id="id_otagsadd" type="text">'.
-    '<input name="addotags" value="'. get_string('addotags', 'tag') .'" onclick="skipClientValidation = true;" id="id_addotags" type="submit">'.
-    '</div>');
-print('</form>');
-
 //setup table
 
-$tablecolumns = array('id', 'name', 'fullname', 'count', 'flag', 'timemodified', 'rawname', 'tagtype', '');
-$tableheaders = array(get_string('id', 'tag'),
-                      get_string('name', 'tag'),
-                      get_string('owner', 'tag'),
-                      get_string('count', 'tag'),
-                      get_string('flag', 'tag'),
-                      get_string('timemodified', 'tag'),
+$tablecolumns = array('id','name', 'fullname', 'count', 'flag', 'timemodified', 'rawname', 'tagtype', '');
+$tableheaders = array(get_string('id' , 'tag'),
+                      get_string('name' , 'tag'),
+                      get_string('owner','tag'),
+                      get_string('count','tag'),
+                      get_string('flag','tag'),
+                      get_string('timemodified','tag'),
                       get_string('newname', 'tag'),
                       get_string('tagtype', 'tag'),
                       get_string('select', 'tag'));
@@ -183,29 +174,36 @@ TABLE_VAR_PAGE    => 'spage'
 $table->setup();
 
 if ($table->get_sql_sort()) {
-    $sort = 'ORDER BY '. $table->get_sql_sort();
+    $sort = ' ORDER BY '.$table->get_sql_sort();
 } else {
     $sort = '';
 }
 
 if ($table->get_sql_where()) {
-    $where = 'WHERE '. $table->get_sql_where();
+    $where = 'WHERE '.$table->get_sql_where();
 } else {
     $where = '';
 }
 
-$query = 'SELECT tg.id, tg.name, tg.rawname, tg.tagtype, COUNT(ti.id) AS count, u.id AS owner, tg.flag, tg.timemodified, u.firstname, u.lastname '.
-    'FROM '. $CFG->prefix .'tag_instance ti RIGHT JOIN '. $CFG->prefix .'tag tg ON tg.id = ti.tagid LEFT JOIN '. $CFG->prefix .'user u ON tg.userid = u.id '.
-    $where .' '.
-    'GROUP BY tg.id, tg.name, tg.rawname, tg.tagtype, u.id, tg.flag, tg.timemodified, u.firstname, u.lastname '.
-    $sort;
+$query = "
+    SELECT tg.id, tg.name, tg.rawname, tg.tagtype, COUNT(ti.id) AS count, u.id AS owner, tg.flag, tg.timemodified, u.firstname, u.lastname
+      FROM {$CFG->prefix}tag_instance ti
+           RIGHT JOIN {$CFG->prefix}tag tg ON tg.id = ti.tagid
+           LEFT JOIN {$CFG->prefix}user u ON tg.userid = u.id
+  {$where}
+  GROUP BY tg.id, tg.name, tg.rawname, tg.tagtype, u.id, tg.flag, tg.timemodified, u.firstname, u.lastname
+   {$sort}";
 
-$totalcount = count_records_sql('SELECT COUNT(DISTINCT(tg.id)) FROM '. $CFG->prefix .'tag tg LEFT JOIN '. $CFG->prefix .'user u ON u.id = tg.userid '. $where);
+
+$totalcount = count_records_sql("SELECT COUNT(DISTINCT(tg.id))
+                                   FROM {$CFG->prefix}tag tg
+                                        LEFT JOIN {$CFG->prefix}user u ON u.id = tg.userid
+                                 $where");
 
 $table->initialbars(true); // always initial bars
 $table->pagesize($perpage, $totalcount);
 
-echo '<form class="tag-management-form" method="post" action="'.$CFG->wwwroot.'/tag/manage.php"><div>';
+echo '<form id="tag-management-form" method="post" action="'.$CFG->wwwroot.'/tag/manage.php"><div>';
 
 //retrieve tags from DB
 if ($tagrecords = get_records_sql($query, $table->get_page_start(),  $table->get_page_size())) {
@@ -213,8 +211,10 @@ if ($tagrecords = get_records_sql($query, $table->get_page_start(),  $table->get
     $taglist = array_values($tagrecords);
 
     //print_tag_cloud(array_values(get_records_sql($query)), false);
+
     //populate table with data
     foreach ($taglist as $tag ){
+
         $id             =   $tag->id;
         $name           =   '<a href="'.$CFG->wwwroot.'/tag/index.php?id='.$tag->id.'">'. tag_display_name($tag) .'</a>';
         $owner          =   '<a href="'.$CFG->wwwroot.'/user/view.php?id='.$tag->owner.'">' . fullname($tag) . '</a>';
@@ -223,6 +223,7 @@ if ($tagrecords = get_records_sql($query, $table->get_page_start(),  $table->get
         $timemodified   =   format_time(time() - $tag->timemodified);
         $checkbox       =   '<input type="checkbox" name="tagschecked[]" value="'.$tag->id.'" />';
         $text           =   '<input type="text" name="newname['.$tag->id.']" />';
+
         $tagtype        =   choose_from_menu($existing_tagtypes, 'tagtypes['.$tag->id.']', $tag->tagtype, '', '', '0', true);
 
         //if the tag if flagged, highlight it
@@ -241,6 +242,7 @@ if ($tagrecords = get_records_sql($query, $table->get_page_start(),  $table->get
         $table->add_data($data);
     }
 
+
     echo '<input type="button" onclick="checkall()" value="'.get_string('selectall').'" /> ';
     echo '<input type="button" onclick="checknone()" value="'.get_string('deselectall').'" /> ';
     echo '<input type="hidden" name="sesskey" value="'.sesskey().'" /> ';
@@ -254,16 +256,18 @@ if ($tagrecords = get_records_sql($query, $table->get_page_start(),  $table->get
             </select>';
 
     echo '<button id="tag-management-submit" type="submit">'. get_string('ok') .'</button>';
+
 }
 
 $table->print_html();
+
 echo '</div></form>';
 
 if ($perpage == SHOW_ALL_PAGE_SIZE) {
-    echo '<div id="showall"><a href="'. $baseurl .'&amp;perpage='. DEFAULT_PAGE_SIZE .'">'. get_string('showperpage', '', DEFAULT_PAGE_SIZE) .'</a></div>';
+    echo '<div id="showall"><a href="'.$baseurl.'&amp;perpage='.DEFAULT_PAGE_SIZE.'">'.get_string('showperpage', '', DEFAULT_PAGE_SIZE).'</a></div>';
 
 } else if ($totalcount > 0 and $perpage < $totalcount) {
-    echo '<div id="showall"><a href="'. $baseurl .'&amp;perpage='. SHOW_ALL_PAGE_SIZE .'">'. get_string('showall', '', $totalcount) .'</a></div>';
+    echo '<div id="showall"><a href="'.$baseurl.'&amp;perpage='.SHOW_ALL_PAGE_SIZE.'">'.get_string('showall', '', $totalcount).'</a></div>';
 }
 
 echo '<br/>';
index ddb5bd0fe6be43b5e303801aa1b6ddd7ee5c4654..30a5608733e5bd17125f62e090de4c028b12b585 100644 (file)
@@ -20,24 +20,24 @@ $navlinks[] = array('name' => get_string('tags', 'tag'), 'link' => "{$CFG->wwwro
 $navigation = build_navigation($navlinks);
 
 $systemcontext   = get_context_instance(CONTEXT_SYSTEM);
-$manage_link = '&nbsp;';
 if ( has_capability('moodle/tag:manage',$systemcontext) ) {
     $manage_link =  "<a href=\"{$CFG->wwwroot}/tag/manage.php\">" . get_string('managetags', 'tag') . "</a>" ;
 }
 
 print_header_simple(get_string('tags', 'tag'), '', $navigation, '', '', '', $manage_link);
+
 print_heading(get_string('searchtags', 'tag'), '', 2);
 
-tag_print_search_box();
+print_tag_search_box();
 
 if(!empty($query)) {
-     tag_print_search_results($query, $page, $perpage);
+     print_tag_search_results($query, $page, $perpage);
 }
 
 echo '<br/><br/>';
 
 print_box_start('generalbox', 'big-tag-cloud-box');
-tag_print_cloud(150, false, 170,70);
+print_tag_cloud(popular_tags_count(150), false, 170,70);
 print_box_end();
 
 print_footer();
index 808044dad8b534408cf891d5cd6d41423be1aa43..5d15cc5e78fe7be9ec6744d17335eccadb53a21e 100644 (file)
@@ -2971,7 +2971,7 @@ table#tag-management-list tr td{
  padding-right :4px;
 }
 
-.tag-management-form {
+form#tag-management-form {
  text-align:center;
 }
 /* tag management end*/
index d1da2b49c0f9c94a4a8ed7e8c0a73f479bda8f8b..3cdb707dd0a11b538228a7c710598ddbe2b8606e 100644 (file)
@@ -61,7 +61,7 @@
     //user interests separated by commas
     if (!empty($CFG->usetags)) {
         require_once($CFG->dirroot.'/tag/lib.php');
-        $user->interests = html_entity_decode(tag_get_tags_csv(array('type'=>'user','id'=>$id), TAG_RETURN_TEXT)); // formslib uses htmlentities itself
+        $user->interests = tag_names_csv(get_item_tags('user',$id));
     }
 
     //create form
index b7c927a308edc938337704fe46e10e94a146bc9d..3d3e81b93d91c1dcb90cfdb89fb4e74f55647e9c 100644 (file)
@@ -54,8 +54,8 @@ function useredit_update_trackforums($user, $usernew) {
     }
 }
 
-function useredit_update_interests($user, $csv_tag_names) {
-    tag_set('user', $user->id, explode(',', $csv_tag_names));
+function useredit_update_interests($user, $cvs_tag_names) {
+    update_item_tags('user', $user->id, $cvs_tag_names);
 }
 
 function useredit_shared_definition(&$mform) {
index 2382477f692493fe14291031720179d37b11b9a5..6042908deca13f47119e91e4e31a19fb5b3a9268 100644 (file)
@@ -4,9 +4,7 @@ require_once('../config.php');
 require_once('../tag/lib.php');
 
 $action = optional_param('action', '', PARAM_ALPHA);
-$id = optional_param('id', 0, PARAM_INT);
-$tag = optional_param('tag', '', PARAM_TAG);
-        
+
 require_login();
 
 if (empty($CFG->usetags)) {
@@ -24,20 +22,29 @@ if (!confirm_sesskey()) {
 
 switch ($action) {
     case 'addinterest':
-        if (empty($tag) && $id) { // for backward-compatibility (people saving bookmarks, mostly..)
-            $tag = tag_get_name($id);
-        } 
+        $id  = optional_param('id', 0, PARAM_INT);
+        $name = optional_param('name', '', PARAM_TEXT);
         
-        tag_set_add('user', $USER->id, $tag);
+        if (empty($name) && $id) {
+            $name = tag_name($id);
+        }
 
-        redirect($CFG->wwwroot.'/tag/index.php?tag='. rawurlencode($tag));
+        tag_an_item('user',$USER->id, $name);
+
+        if (!empty($name) && !$id) {
+            $id = tag_id(tag_normalize($name));
+        }
+                
+        redirect($CFG->wwwroot.'/tag/index.php?id='.$id);
         break;
 
     case 'flaginappropriate':
         
-        tag_set_flag(tag_get_id($tag));
+        $id  = required_param('id', PARAM_INT);
+        
+        tag_flag_inappropriate($id);
         
-        redirect($CFG->wwwroot.'/tag/index.php?tag='. rawurlencode($tag), get_string('responsiblewillbenotified', 'tag'));
+        redirect($CFG->wwwroot.'/tag/index.php?id='.$id, get_string('responsiblewillbenotified','tag'));
         break;
 }
 
index 497d70666f0e8cfdff1286c7232e3b0b4ec8f62d..45337e5a1fae55abb38f9afb9e6f70e05a5a8276 100644 (file)
 
 /// Printing Interests
        if( !empty($CFG->usetags)) {
-           if ( $interests = tag_get_tags_csv(array('type'=>'user', 'id'=>$user->id)) ) { 
-            print_row(get_string('interests') .": ", $interests);
+           $interests = get_item_tags('user', $user->id);
+
+        $instereststr = tag_links_csv($interests);
+
+        if ($interests) {
+            print_row(get_string('interests').": ",rtrim($instereststr));
         }
     }
 /// End of Printing Interests