2012-03-26 04:05:14 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function pretheme_init(&$a) {
|
2012-03-27 03:15:10 +02:00
|
|
|
|
|
|
|
if($_REQUEST['theme']) {
|
|
|
|
$theme = $_REQUEST['theme'];
|
|
|
|
$info = get_theme_info($theme);
|
|
|
|
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'];
|
2012-03-27 03:15:10 +02:00
|
|
|
}
|
2012-07-24 04:37:00 +02:00
|
|
|
else {
|
|
|
|
$desc = '';
|
|
|
|
$version = '';
|
|
|
|
$credits = '';
|
|
|
|
}
|
|
|
|
echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits));
|
2012-03-27 03:15:10 +02:00
|
|
|
}
|
2012-03-26 04:05:14 +02:00
|
|
|
killme();
|
|
|
|
}
|