1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) {
- exit(1);
- }
- class AttachmentTagCloudSection extends TagCloudSection
- {
- function title()
- {
-
- return _('Tags for this attachment');
- }
- function showTag($tag, $weight, $relative)
- {
- if ($relative > 0.5) {
- $rel = 'tag-cloud-7';
- } else if ($relative > 0.4) {
- $rel = 'tag-cloud-6';
- } else if ($relative > 0.3) {
- $rel = 'tag-cloud-5';
- } else if ($relative > 0.2) {
- $rel = 'tag-cloud-4';
- } else if ($relative > 0.1) {
- $rel = 'tag-cloud-3';
- } else if ($relative > 0.05) {
- $rel = 'tag-cloud-2';
- } else {
- $rel = 'tag-cloud-1';
- }
- $this->out->elementStart('li', $rel);
- $this->out->element('a', array('href' => $this->tagUrl($tag)),
- $tag);
- $this->out->elementEnd('li');
- }
- function getTags()
- {
- $notice_tag = new Notice_tag;
- $query = 'select tag,count(tag) as weight from notice_tag join file_to_post on (notice_tag.notice_id=post_id) join notice on notice_id = notice.id where file_id=' . $notice_tag->escape($this->out->attachment->id) . ' group by tag order by weight desc';
- $notice_tag->query($query);
- return $notice_tag;
- }
- }
|