MDL-8188, add approve.gif to chameleon theme
[moodle-linuxchix.git] / tag / locallib.php
blobe2c26d533088ea59c68e6959e0aa5b909967fb26
1 <?php // $Id$
3 /**
4 * locallib.php - moodle tag local library - output functions
6 * @version: $Id$
7 * @licence http://www.gnu.org/copyleft/gpl.html GNU Public License
8 * @package moodlecore
12 /**
13 * Prints a tag cloud
15 * @param array $tagcloud array of tag objects (fields: id, name, rawname, count and flag)
16 * @param $return if true return html string
18 function tag_print_cloud($nr_of_tags=150, $return=false) {
20 global $CFG;
22 $can_manage_tags = has_capability('moodle/tag:manage', get_context_instance(CONTEXT_SYSTEM));
24 if ( !$tagcloud = get_records_sql('SELECT tg.rawname, tg.id, tg.name, tg.tagtype, COUNT(ti.id) AS count, tg.flag '.
25 'FROM '. $CFG->prefix .'tag_instance ti INNER JOIN '. $CFG->prefix .'tag tg ON tg.id = ti.tagid '.
26 'GROUP BY tg.id, tg.rawname, tg.name, tg.flag, tg.tagtype '.
27 'ORDER BY count DESC, tg.name ASC', 0, $nr_of_tags) ) {
28 $tagcloud = array();
31 $totaltags = count($tagcloud);
32 $currenttag = 0;
33 $size = 20;
34 $lasttagct = -1;
36 $etags = array();
37 foreach ($tagcloud as $tag) {
39 $currenttag++;
41 if ($currenttag == 1) {
42 $lasttagct = $tag->count;
43 $size = 20;
44 } else if ($tag->count != $lasttagct) {
45 $lasttagct = $tag->count;
46 $size = 20 - ( (int)((($currenttag - 1) / $totaltags) * 20) );
49 $tag->class = "$tag->tagtype s$size";
50 $etags[] = $tag;
53 usort($etags, "tag_cloud_sort");
54 $output = '';
55 $output .= "\n<ul class='tag_cloud inline-list'>\n";
56 foreach ($etags as $tag) {
57 if ($tag->flag > 0 && $can_manage_tags) {
58 $tagname = '<span class="flagged-tag">'. tag_display_name($tag) .'</span>';
59 } else {
60 $tagname = tag_display_name($tag);
63 $link = $CFG->wwwroot .'/tag/index.php?tag='. rawurlencode($tag->name) .'"';
64 $output .= '<li><a href="'. $link .'" class="'. $tag->class .'" '.
65 'title="'. get_string('numberofentries', 'blog', $tag->count) .'">'.
66 $tagname .'</a></li> ';
68 $output .= "\n</ul>\n";
70 if ($return) {
71 return $output;
72 } else {
73 echo $output;
77 /**
78 * This function is used by print_tag_cloud, to usort() the tags in the cloud.
79 * See php.net/usort for the parameters documentation. This was originally in
80 * blocks/blog_tags/block_blog_tags.php, named blog_tags_sort().
82 function tag_cloud_sort($a, $b) {
83 global $CFG;
85 if (empty($CFG->tagsort)) {
86 $tagsort = 'name'; // by default, sort by name
87 } else {
88 $tagsort = $CFG->tagsort;
91 if (is_numeric($a->$tagsort)) {
92 return ($a->$tagsort == $b->$tagsort) ? 0 : ($a->$tagsort > $b->$tagsort) ? 1 : -1;
93 } elseif (is_string($a->$tagsort)) {
94 return strcmp($a->$tagsort, $b->$tagsort);
95 } else {
96 return 0;
101 * Prints a box with the description of a tag and its related tags
103 * @param unknown_type $tag_object
104 * @param $return if true return html string
106 function tag_print_description_box($tag_object, $return=false) {
108 global $USER, $CFG;
110 $max_tags_displayed = 10; // todo: turn this into a system setting
112 $tagname = tag_display_name($tag_object);
113 $related_tags = tag_get_related_tags($tag_object->id, TAG_RELATED_ALL, $max_tags_displayed+1); // this gets one more than we want
115 $content = !empty($tag_object->description) || $related_tags;
116 $output = '';
118 if ($content) {
119 $output .= print_box_start('generalbox', 'tag-description', true);
122 if (!empty($tag_object->description)) {
123 $options = new object();
124 $options->para = false;
125 $output .= format_text($tag_object->description, $tag_object->descriptionformat, $options);
128 if ($related_tags) {
129 $more_links = false;
130 if (count($related_tags) > $max_tags_displayed) {
131 array_pop($related_tags);
132 $more_links = true;
134 $output .= '<br /><br /><strong>'. get_string('relatedtags', 'tag') .': </strong>'. tag_get_related_tags_csv($related_tags);
135 if ($more_links) {
136 $output .= ' ...';
140 if ($content) {
141 $output .= print_box_end(true);
144 if ($return) {
145 return $output;
146 } else {
147 echo $output;
152 * Prints a box that contains the management links of a tag
154 * @param $tagid
155 * @param $return if true return html string
157 function tag_print_management_box($tag_object, $return=false) {
159 global $USER, $CFG;
161 $tagname = tag_display_name($tag_object);
162 $output = '';
164 if (!isguestuser()) {
165 $output .= print_box_start('box','tag-management-box', true);
166 $systemcontext = get_context_instance(CONTEXT_SYSTEM);
167 $links = array();
169 // Add a link for users to add/remove this from their interests
170 if (tag_record_tagged_with('user', $USER->id, $tag_object->name)) {
171 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=removeinterest&amp;sesskey='. sesskey() .'&amp;tag='. rawurlencode($tag_object->name) .'">'. get_string('removetagfrommyinterests', 'tag', $tagname) .'</a>';
172 } else {
173 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=addinterest&amp;sesskey='. sesskey() .'&amp;tag='. rawurlencode($tag_object->name) .'">'. get_string('addtagtomyinterests', 'tag', $tagname) .'</a>';
176 // flag as inappropriate link
177 $links[] = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=flaginappropriate&amp;sesskey='. sesskey() .'&amp;tag='. rawurlencode($tag_object->name) .'">'. get_string('flagasinappropriate', 'tag', rawurlencode($tagname)) .'</a>';
179 // Edit tag: Only people with moodle/tag:edit capability who either have it as an interest or can manage tags
180 if (has_capability('moodle/tag:edit', $systemcontext) &&
181 (tag_record_tagged_with('user', $USER->id, $tag_object->name) ||
182 has_capability('moodle/tag:manage', $systemcontext))) {
183 $links[] = '<a href="'. $CFG->wwwroot .'/tag/edit.php?tag='. rawurlencode($tag_object->name) .'">'. get_string('edittag', 'tag') .'</a>';
187 $output .= implode(' | ', $links);
188 $output .= print_box_end(true);
191 if ($return) {
192 return $output;
193 } else {
194 echo $output;
199 * Prints the tag search box
201 * @param bool $return if true return html string
203 function tag_print_search_box($return=false) {
204 global $CFG;
206 $output = print_box_start('','tag-search-box', true);
207 $output .= '<form action="'.$CFG->wwwroot.'/tag/search.php" style="display:inline">';
208 $output .= '<div>';
209 $output .= '<input id="searchform_search" name="query" type="text" size="40" />';
210 $output .= '<button id="searchform_button" type="submit">'. get_string('search', 'tag') .'</button><br />';
211 $output .= '</div>';
212 $output .= '</form>';
213 $output .= print_box_end(true);
215 if ($return) {
216 return $output;
218 else {
219 echo $output;
224 * Prints the tag search results
226 * @param string $query text that tag names will be matched against
227 * @param int $page current page
228 * @param int $perpage nr of users displayed per page
229 * @param $return if true return html string
231 function tag_print_search_results($query, $page, $perpage, $return=false) {
233 global $CFG, $USER;
235 $query = array_shift(tag_normalize($query, TAG_CASE_ORIGINAL));
237 $count = sizeof(tag_find_tags($query, false));
238 $tags = array();
240 if ( $found_tags = tag_find_tags($query, true, $page * $perpage, $perpage) ) {
241 $tags = array_values($found_tags);
244 $baseurl = $CFG->wwwroot.'/tag/search.php?query='. rawurlencode($query);
245 $output = '';
247 // link "Add $query to my interests"
248 $addtaglink = '';
249 if( !tag_record_tagged_with('user', $USER->id, $query) ) {
250 $addtaglink = '<a href="'. $CFG->wwwroot .'/tag/user.php?action=addinterest&amp;sesskey='. sesskey() .'&amp;tag='. rawurlencode($query) .'">';
251 $addtaglink .= get_string('addtagtomyinterests', 'tag', htmlspecialchars($query)) .'</a>';
254 if ( !empty($tags) ) { // there are results to display!!
255 $output .= print_heading(get_string('searchresultsfor', 'tag', htmlspecialchars($query)) ." : {$count}", '', 3, 'main', true);
257 //print a link "Add $query to my interests"
258 if (!empty($addtaglink)) {
259 $output .= print_box($addtaglink, 'box', 'tag-management-box', true);
262 $nr_of_lis_per_ul = 6;
263 $nr_of_uls = ceil( sizeof($tags) / $nr_of_lis_per_ul );
265 $output .= '<ul id="tag-search-results">';
266 for($i = 0; $i < $nr_of_uls; $i++) {
267 $output .= '<li>';
268 foreach (array_slice($tags, $i * $nr_of_lis_per_ul, $nr_of_lis_per_ul) as $tag) {
269 $tag_link = ' <a href="'. $CFG->wwwroot .'/tag/index.php?id='. $tag->id .'">'. tag_display_name($tag) .'</a>';
270 $output .= '&#8226;'. $tag_link .'<br/>';
272 $output .= '</li>';
274 $output .= '</ul>';
275 $output .= '<div>&nbsp;</div>'; // <-- small layout hack in order to look good in Firefox
277 $output .= print_paging_bar($count, $page, $perpage, $baseurl .'&amp;', 'page', false, true);
279 else { //no results were found!!
280 $output .= print_heading(get_string('noresultsfor', 'tag', htmlspecialchars($query)), '', 3, 'main' , true);
282 //print a link "Add $query to my interests"
283 if (!empty($addtaglink)) {
284 $output .= print_box($addtaglink, 'box', 'tag-management-box', true);
288 if ($return) {
289 return $output;
291 else {
292 echo $output;
297 * Prints a table of the users tagged with the tag passed as argument
299 * @param $tag_object
300 * @param int $users_per_row number of users per row to display
301 * @param int $limitfrom prints users starting at this point (optional, required if $limitnum is set).
302 * @param int $limitnum prints this many users (optional, required if $limitfrom is set).
303 * @param $return if true return html string
305 function tag_print_tagged_users_table($tag_object, $limitfrom='' , $limitnum='', $return=false) {
307 //List of users with this tag
308 $userlist = tag_find_records($tag_object->name, 'user', $limitfrom, $limitnum);
310 $output = tag_print_user_list($userlist, true);
312 if ($return) {
313 return $output;
315 else {
316 echo $output;
321 * Prints an individual user box
323 * @param $user user object (contains the following fields: id, firstname, lastname and picture)
324 * @param $return if true return html string
326 function tag_print_user_box($user, $return=false) {
327 global $CFG;
329 $textlib = textlib_get_instance();
330 $usercontext = get_context_instance(CONTEXT_USER, $user->id);
331 $profilelink = '';
333 if ( has_capability('moodle/user:viewdetails', $usercontext) ) {
334 $profilelink = $CFG->wwwroot .'/user/view.php?id='. $user->id;
337 $output = print_box_start('user-box', 'user'. $user->id, true);
338 $fullname = fullname($user);
339 $alt = '';
341 if (!empty($profilelink)) {
342 $output .= '<a href="'. $profilelink .'">';
343 $alt = $fullname;
346 //print user image - if image is only content of link it needs ALT text!
347 if ($user->picture) {
348 $output .= '<img alt="'. $alt .'" class="user-image" src="'. $CFG->wwwroot .'/user/pix.php/'. $user->id .'/f1.jpg" />';
349 } else {
350 $output .= '<img alt="'. $alt .'" class="user-image" src="'. $CFG->wwwroot .'/pix/u/f1.png" />';
353 $output .= '<br />';
355 if (!empty($profilelink)) {
356 $output .= '</a>';
359 //truncate name if it's too big
360 if ($textlib->strlen($fullname) > 26) {
361 $fullname = $textlib->substr($fullname, 0, 26) .'...';
364 $output .= '<strong>'. $fullname .'</strong>';
365 $output .= print_box_end(true);
367 if ($return) {
368 return $output;
370 else {
371 echo $output;
375 * Prints a list of users
377 * @param array $userlist an array of user objects
378 * @param $return if true return html string
380 function tag_print_user_list($userlist, $return=false) {
382 $output = '<ul class="inline-list">';
384 foreach ($userlist as $user){
385 $output .= '<li>'. tag_print_user_box($user, true) ."</li>\n";
387 $output .= "</ul>\n";
389 if ($return) {
390 return $output;
392 else {
393 echo $output;