5 function pretheme_init(App $a) {
7 if ($_REQUEST['theme']) {
8 $theme = $_REQUEST['theme'];
9 $info = get_theme_info($theme);
11 // unfortunately there will be no translation for this string
12 $desc = $info['description'];
13 $version = $info['version'];
14 $credits = $info['credits'];
20 echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits));