Generated an extra class on bookmark notice <li>s
This commit is contained in:
parent
66f6b2a342
commit
5dfc9e1b18
@ -648,6 +648,27 @@ class BookmarkPlugin extends Plugin
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Output our CSS class for bookmark notice list elements
|
||||||
|
*
|
||||||
|
* @param NoticeListItem $nli The item being shown
|
||||||
|
*
|
||||||
|
* @return boolean hook value
|
||||||
|
*/
|
||||||
|
|
||||||
|
function onStartOpenNoticeListItemElement($nli)
|
||||||
|
{
|
||||||
|
$nb = Bookmark::getByNotice($nli->notice);
|
||||||
|
if (!empty($nb)) {
|
||||||
|
$id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id;
|
||||||
|
$nli->out->elementStart('li', array('class' => 'hentry notice bookmark',
|
||||||
|
'id' => 'notice-' . $id));
|
||||||
|
Event::handle('EndOpenNoticeListItemElement', array($nli));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Save a remote bookmark (from Salmon or PuSH)
|
* Save a remote bookmark (from Salmon or PuSH)
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user