friendica/mod/pretheme.php

26 lines
563 B
PHP
Raw Normal View History

2012-03-26 04:05:14 +02:00
<?php
use Friendica\App;
use Friendica\Core\Theme;
function pretheme_init(App $a) {
2017-04-30 06:01:26 +02:00
if ($_REQUEST['theme']) {
$theme = $_REQUEST['theme'];
$info = Theme::getInfo($theme);
2017-04-30 06:01:26 +02:00
if ($info) {
// unfortunately there will be no translation for this string
2012-07-24 04:37:00 +02:00
$desc = $info['description'];
$version = $info['version'];
$credits = $info['credits'];
2017-04-30 06:01:26 +02:00
} else {
2012-07-24 04:37:00 +02:00
$desc = '';
$version = '';
$credits = '';
}
echo json_encode(['img' => Theme::getScreenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits]);
}
2012-03-26 04:05:14 +02:00
killme();
}