4 * locallib.php - moodle tag local library - output functions
7 * @licence http://www.gnu.org/copyleft/gpl.html GNU Public License
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) {
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) ) {
31 $totaltags = count($tagcloud);
37 foreach ($tagcloud as $tag) {
41 if ($currenttag == 1) {
42 $lasttagct = $tag->count
;
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";
53 usort($etags, "tag_cloud_sort");
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>';
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";
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) {
85 if (empty($CFG->tagsort
)) {
86 $tagsort = 'name'; // by default, sort by name
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);
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) {
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;
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);
130 if (count($related_tags) > $max_tags_displayed) {
131 array_pop($related_tags);
134 $output .= '<br /><br /><strong>'. get_string('relatedtags', 'tag') .': </strong>'. tag_get_related_tags_csv($related_tags);
141 $output .= print_box_end(true);
152 * Prints a box that contains the management links of a tag
155 * @param $return if true return html string
157 function tag_print_management_box($tag_object, $return=false) {
161 $tagname = tag_display_name($tag_object);
164 if (!isguestuser()) {
165 $output .= print_box_start('box','tag-management-box', true);
166 $systemcontext = get_context_instance(CONTEXT_SYSTEM
);
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&sesskey='. sesskey() .'&tag='. rawurlencode($tag_object->name
) .'">'. get_string('removetagfrommyinterests', 'tag', $tagname) .'</a>';
173 $links[] = '<a href="'. $CFG->wwwroot
.'/tag/user.php?action=addinterest&sesskey='. sesskey() .'&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&sesskey='. sesskey() .'&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);
199 * Prints the tag search box
201 * @param bool $return if true return html string
203 function tag_print_search_box($return=false) {
206 $output = print_box_start('','tag-search-box', true);
207 $output .= '<form action="'.$CFG->wwwroot
.'/tag/search.php" style="display:inline">';
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 />';
212 $output .= '</form>';
213 $output .= print_box_end(true);
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) {
235 $query = array_shift(tag_normalize($query, TAG_CASE_ORIGINAL
));
237 $count = sizeof(tag_find_tags($query, false));
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);
247 // link "Add $query to my interests"
249 if( !tag_record_tagged_with('user', $USER->id
, $query) ) {
250 $addtaglink = '<a href="'. $CFG->wwwroot
.'/tag/user.php?action=addinterest&sesskey='. sesskey() .'&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++
) {
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 .= '•'. $tag_link .'<br/>';
275 $output .= '<div> </div>'; // <-- small layout hack in order to look good in Firefox
277 $output .= print_paging_bar($count, $page, $perpage, $baseurl .'&', '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);
297 * Prints a table of the users tagged with the tag passed as argument
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);
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) {
329 $textlib = textlib_get_instance();
330 $usercontext = get_context_instance(CONTEXT_USER
, $user->id
);
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);
341 if (!empty($profilelink)) {
342 $output .= '<a href="'. $profilelink .'">';
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" />';
350 $output .= '<img alt="'. $alt .'" class="user-image" src="'. $CFG->wwwroot
.'/pix/u/f1.png" />';
355 if (!empty($profilelink)) {
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);
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";