gnu-social/lib/galleryaction.php

123 lines
4.4 KiB
PHP
Raw Normal View History

2009-01-22 16:06:06 +00:00
<?php
/**
2009-08-25 23:14:12 +01:00
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 2009, StatusNet, Inc.
2009-01-22 16:06:06 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('GNUSOCIAL')) { exit(1); }
2009-01-22 16:06:06 +00:00
// 10x8
define('AVATARS_PER_PAGE', 80);
// @todo FIXME: Class documentation missing.
class GalleryAction extends ProfileAction
2009-01-22 16:06:06 +00:00
{
protected function handle()
2009-01-22 16:06:06 +00:00
{
// Post from the tag dropdown; redirect to a GET
if ($this->isPost()) {
common_redirect($this->selfUrl(), 303);
2009-01-22 16:06:06 +00:00
}
parent::handle();
2009-01-22 16:06:06 +00:00
}
function showContent()
{
$this->showTagsDropdown();
}
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');
2009-01-22 16:06:06 +00:00
$this->elementStart('ul');
$this->elementStart('li', array('id' => 'filter_tags_all',
'class' => 'child_1'));
$this->element('a',
array('href' =>
common_local_url($this->trimmed('action'),
array('nickname' =>
$this->target->getNickname()))),
// TRANS: List element on gallery action page to show all tags.
_m('TAGS','All'));
2009-01-22 16:06:06 +00:00
$this->elementEnd('li');
$this->elementStart('li', array('id'=>'filter_tags_item'));
$this->elementStart('form', array('name' => 'bytag',
2009-09-04 16:59:27 +01:00
'id' => 'form_filter_bytag',
'action' => common_path('?action=' . $this->getActionName()),
2009-01-22 16:06:06 +00:00
'method' => 'post'));
2009-09-04 16:59:27 +01:00
$this->elementStart('fieldset');
// TRANS: Fieldset legend on gallery action page.
2009-09-04 16:59:27 +01:00
$this->element('legend', null, _('Select tag to filter'));
// TRANS: Dropdown field label on gallery action page for a list containing tags.
2009-01-22 16:06:06 +00:00
$this->dropdown('tag', _('Tag'), $content,
// TRANS: Dropdown field title on gallery action page for a list containing tags.
_('Choose a tag to narrow list.'), false, $tag);
$this->hidden('nickname', $this->target->getNickname());
// TRANS: Submit button text on gallery action page.
$this->submit('submit', _m('BUTTON','Go'));
2009-09-04 16:59:27 +01:00
$this->elementEnd('fieldset');
2009-01-22 16:06:06 +00:00
$this->elementEnd('form');
$this->elementEnd('li');
$this->elementEnd('ul');
$this->elementEnd('dd');
$this->elementEnd('dl');
2009-01-22 16:06:06 +00:00
}
}
// Get list of tags we tagged other users with
function getTags($lst, $usr)
{
$profile_tag = new Notice_tag();
$profile_tag->query('SELECT DISTINCT(tag) ' .
'FROM profile_tag, subscription ' .
'WHERE tagger = ' . $this->target->id . ' ' .
'AND ' . $usr . ' = ' . $this->target->id . ' ' .
2009-01-22 16:06:06 +00:00
'AND ' . $lst . ' = tagged ' .
'AND tagger != tagged');
$tags = array();
while ($profile_tag->fetch()) {
$tags[] = $profile_tag->tag;
}
$profile_tag->free();
return $tags;
}
function getAllTags()
{
return array();
}
function showProfileBlock()
{
$block = new AccountProfileBlock($this, $this->target);
$block->show();
}
2009-04-24 21:28:39 +01:00
}