Ajax update notice tally
This commit is contained in:
parent
0ac333ec80
commit
0fe0f42173
|
@ -136,27 +136,6 @@ class AnonymousFavePlugin extends Plugin {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function onEndShowNoticeInfo($item)
|
|
||||||
{
|
|
||||||
common_debug("XXXXXXXXXXX onEndShowNoticeInfo");
|
|
||||||
|
|
||||||
$tally = Fave_tally::ensureTally($item->notice->id);
|
|
||||||
|
|
||||||
if (!empty($tally)) {
|
|
||||||
$item->out->elementStart(
|
|
||||||
'div',
|
|
||||||
array(
|
|
||||||
'id' => 'notice-' . $item->notice->id . '-tally',
|
|
||||||
'class' => 'notice-tally'
|
|
||||||
)
|
|
||||||
);
|
|
||||||
$item->out->raw(sprintf(_m("favored %d times"), $tally->count));
|
|
||||||
$item->out->elementEnd('div');
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function onStartShowNoticeOptions($item) {
|
function onStartShowNoticeOptions($item) {
|
||||||
|
|
||||||
if (!common_logged_in()) {
|
if (!common_logged_in()) {
|
||||||
|
@ -187,6 +166,33 @@ class AnonymousFavePlugin extends Plugin {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onEndFavorNoticeForm($form, $notice)
|
||||||
|
{
|
||||||
|
$this->showTally($form->out, $notice);
|
||||||
|
}
|
||||||
|
|
||||||
|
function onEndDisFavorNoticeForm($form, $notice)
|
||||||
|
{
|
||||||
|
$this->showTally($form->out, $notice);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showTally($out, $notice)
|
||||||
|
{
|
||||||
|
$tally = Fave_tally::ensureTally($notice->id);
|
||||||
|
|
||||||
|
if (!empty($tally)) {
|
||||||
|
$out->elementStart(
|
||||||
|
'div',
|
||||||
|
array(
|
||||||
|
'id' => 'notice-' . $notice->id . '-tally',
|
||||||
|
'class' => 'notice-tally'
|
||||||
|
)
|
||||||
|
);
|
||||||
|
$out->raw(sprintf(_m("favored %d times"), $tally->count));
|
||||||
|
$out->elementEnd('div');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function onEndFavorNotice($profile, $notice)
|
function onEndFavorNotice($profile, $notice)
|
||||||
{
|
{
|
||||||
$tally = Fave_tally::increment($notice->id);
|
$tally = Fave_tally::increment($notice->id);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user