Admin part: can import, export and drop themes
This commit is contained in:
parent
4d1a860a01
commit
ffe0c2a7c4
8 changed files with 217 additions and 7 deletions
9
onyx/include/admin/export_theme.php
Normal file
9
onyx/include/admin/export_theme.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
if(!defined('ONYX')) exit;
|
||||
|
||||
header("Content-type: application/xml");
|
||||
|
||||
$template->assign("theme", new Theme($_GET["id"]));
|
||||
|
||||
return "admin/export_theme";
|
||||
Reference in a new issue