friendica/mod/pretheme.php

23 lines
523 B
PHP
Raw Normal View History

2012-03-26 04:05:14 +02:00
<?php
function pretheme_init(App $a) {
2017-04-30 06:01:26 +02:00
if ($_REQUEST['theme']) {
$theme = $_REQUEST['theme'];
$info = get_theme_info($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(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits));
}
2017-04-30 06:01:26 +02:00
2012-03-26 04:05:14 +02:00
killme();
}