summaryrefslogtreecommitdiff
path: root/plugins/UserFlag/adminprofileflag.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-12-28 08:19:56 -0800
committerEvan Prodromou <evan@status.net>2009-12-28 08:19:56 -0800
commit85b8b35f53258a95989a8679455e0b2fd72bc5f5 (patch)
tree61d1512a5af5a8766130f3e29da6a05a8dcc9a65 /plugins/UserFlag/adminprofileflag.php
parent2c2a82fda0b78422802a9d0b23afc765c2f5f52b (diff)
clear flags and show flaggers in adminflagprofile
Diffstat (limited to 'plugins/UserFlag/adminprofileflag.php')
-rw-r--r--plugins/UserFlag/adminprofileflag.php67
1 files changed, 67 insertions, 0 deletions
diff --git a/plugins/UserFlag/adminprofileflag.php b/plugins/UserFlag/adminprofileflag.php
index b0888a31d..ab1a86ac4 100644
--- a/plugins/UserFlag/adminprofileflag.php
+++ b/plugins/UserFlag/adminprofileflag.php
@@ -182,6 +182,8 @@ class FlaggedProfileList extends ProfileList {
class FlaggedProfileListItem extends ProfileListItem
{
+ const MAX_FLAGGERS = 5;
+
var $user = null;
var $r2args = null;
@@ -252,5 +254,70 @@ class FlaggedProfileListItem extends ProfileListItem
function showClearButton()
{
+ if ($this->user->hasRight(UserFlagPlugin::CLEARFLAGS)) {
+ $this->out->elementStart('li', 'entity_clear');
+ $cf = new ClearFlagForm($this->out, $this->profile, $this->r2args);
+ $cf->show();
+ $this->out->elementEnd('li');
+ }
+ }
+
+ function endProfile()
+ {
+ $this->showFlaggersList();
+ parent::endProfile();
+ }
+
+ function showFlaggersList()
+ {
+ $flaggers = array();
+
+ $ufp = new User_flag_profile();
+
+ $ufp->selectAdd();
+ $ufp->selectAdd('user_id');
+ $ufp->profile_id = $this->profile->id;
+ $ufp->orderBy('created');
+
+ if ($ufp->find()) { // XXX: this should always happen
+ while ($ufp->fetch()) {
+ $user = User::staticGet('id', $ufp->user_id);
+ if (!empty($user)) { // XXX: this would also be unusual
+ $flaggers[] = clone($user);
+ }
+ }
+ }
+
+ $cnt = count($flaggers);
+ $others = 0;
+
+ if ($cnt > self::MAX_FLAGGERS) {
+ $flaggers = array_slice($flaggers, 0, self::MAX_FLAGGERS);
+ $others = $cnt - self::MAX_FLAGGERS;
+ }
+
+ $lnks = array();
+
+ foreach ($flaggers as $flagger) {
+
+ $url = common_local_url('showstream',
+ array('nickname' => $flagger->nickname));
+
+ $lnks[] = XMLStringer::estring('a', array('href' => $url,
+ 'class' => 'flagger'),
+ $flagger->nickname);
+ }
+
+ if ($cnt > 0) {
+ $text = _('Flagged by ');
+ $text .= implode(', ', $lnks);
+ if ($others > 0) {
+ $text .= sprintf(_(' and %d others'), $others);
+ }
+
+ $this->out->elementStart('p', array('class' => 'flaggers'));
+ $this->out->raw($text);
+ $this->out->elementEnd('p');
+ }
}
}