2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 16:32:28 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class EmoticonList
|
|
|
|
*/
|
|
|
|
class EmoticonList extends Extension
|
|
|
|
{
|
|
|
|
public function onPageRequest(PageRequestEvent $event)
|
|
|
|
{
|
|
|
|
if ($event->page_matches("emote/list")) {
|
|
|
|
$this->theme->display_emotes(glob("ext/emoticons/default/*"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|