a6d501bc4e
reverted change to function name.
25 lines
477 B
PHP
25 lines
477 B
PHP
<?php
|
|
|
|
/**
|
|
* @file mod/smilies.php
|
|
*/
|
|
use Friendica\App;
|
|
use Friendica\Content\Smilies;
|
|
|
|
/**
|
|
* @param object $a App
|
|
* @return mixed
|
|
*/
|
|
function smilies_content(App $a)
|
|
{
|
|
if ($a->argv[1] === "json") {
|
|
$tmp = Smilies::getList();
|
|
$results = array();
|
|
for ($i = 0; $i < count($tmp['texts']); $i++) {
|
|
$results[] = array('text' => $tmp['texts'][$i], 'icon' => $tmp['icons'][$i]);
|
|
}
|
|
json_return_and_die($results);
|
|
} else {
|
|
return Smilies::replace('', true);
|
|
}
|
|
}
|