diff options
author | friendica <info@friendica.com> | 2012-03-25 19:05:14 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-25 19:05:14 -0700 |
commit | c88674aaf23ede573f19a2b363dfccf9627a5dcb (patch) | |
tree | 801fced677c7af3dd202919a2a747175a3c9a232 /mod/pretheme.php | |
parent | 7ab117fd31c31cba4880cfcc63fc940531850455 (diff) | |
download | volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.tar.gz volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.tar.bz2 volse-hubzilla-c88674aaf23ede573f19a2b363dfccf9627a5dcb.zip |
theme preview for end users
Diffstat (limited to 'mod/pretheme.php')
-rw-r--r-- | mod/pretheme.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/pretheme.php b/mod/pretheme.php new file mode 100644 index 000000000..5a71bbe53 --- /dev/null +++ b/mod/pretheme.php @@ -0,0 +1,6 @@ +<?php + +function pretheme_init(&$a) { + if($_REQUEST['theme']) echo json_encode(array('img' => get_theme_screenshot($_REQUEST['theme']))); + killme(); +} |