123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?php
- defined('GNUSOCIAL') || die();
- define('AVATARS_PER_PAGE', 80);
- class GalleryAction extends ProfileAction
- {
- protected function handle()
- {
-
- if ($this->isPost()) {
- common_redirect($this->selfUrl(), 303);
- }
- parent::handle();
- }
- public function showContent()
- {
- $this->showTagsDropdown();
- }
- public function showTagsDropdown()
- {
- $tag = $this->trimmed('tag');
- $tags = $this->getAllTags();
- $content = array();
- foreach ($tags as $t) {
- $content[$t] = $t;
- }
- if ($tags) {
- $this->elementStart('dl', array('id' => 'filter_tags'));
- $this->element('dt', null, _('Tags'));
- $this->elementStart('dd');
- $this->elementStart('ul');
- $this->elementStart('li', array('id' => 'filter_tags_all',
- 'class' => 'child_1'));
- $this->element(
- 'a',
- [
- 'href' => common_local_url(
- $this->trimmed('action'),
- ['nickname' => $this->target->getNickname()]
- ),
- ],
-
- _m('TAGS', 'All')
- );
- $this->elementEnd('li');
- $this->elementStart('li', array('id'=>'filter_tags_item'));
- $this->elementStart('form', array('name' => 'bytag',
- 'id' => 'form_filter_bytag',
- 'action' => common_path('?action=' . $this->getActionName()),
- 'method' => 'post'));
- $this->elementStart('fieldset');
-
- $this->element('legend', null, _('Select tag to filter'));
-
- $this->dropdown(
- 'tag',
- _('Tag'),
- $content,
-
- _('Choose a tag to narrow list.'),
- false,
- $tag
- );
- $this->hidden('nickname', $this->target->getNickname());
-
- $this->submit('submit', _m('BUTTON', 'Go'));
- $this->elementEnd('fieldset');
- $this->elementEnd('form');
- $this->elementEnd('li');
- $this->elementEnd('ul');
- $this->elementEnd('dd');
- $this->elementEnd('dl');
- }
- }
-
- public function getTags($lst, $usr)
- {
- $profile_tag = new Notice_tag();
- $profile_tag->query(
- <<<END
- SELECT DISTINCT tag FROM profile_tag INNER JOIN subscription
- ON tagger = {$usr} AND {$lst} = tagged
- WHERE tagger = {$this->target->id} AND tagger <> tagged;
- END
- );
- $tags = [];
- while ($profile_tag->fetch()) {
- $tags[] = $profile_tag->tag;
- }
- $profile_tag->free();
- return $tags;
- }
- public function getAllTags()
- {
- return array();
- }
- public function showProfileBlock()
- {
- $block = new AccountProfileBlock($this, $this->target);
- $block->show();
- }
- }
|