mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
15 lines
325 B
PHP
15 lines
325 B
PHP
<?php
|
|
|
|
function smilies_content(&$a) {
|
|
if ($a->argv[1]==="json"){
|
|
$tmp = list_smilies();
|
|
$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('',true);
|
|
}
|
|
}
|