aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Pretheme.php
blob: 120fd5359d1fcbe82b902563ccc848271a53adec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
namespace Zotlabs\Module;


class Pretheme extends \Zotlabs\Web\Controller {

	function init() {
		
		if($_REQUEST['theme']) {
			$theme = $_REQUEST['theme'];
			$info = get_theme_info($theme);
			if($info) {
				// unfortunately there will be no translation for this string
				$desc    = $info['description'];
				$version = $info['version'];
				$credits = $info['credits'];
			}
			else {
				$desc = '';
				$version = '';
				$credits = '';
			}
			echo json_encode(array('img' => get_theme_screenshot($theme), 'desc' => $desc, 'version' => $version, 'credits' => $credits));
		}
		killme();
	}
	
}