meraproject/module/core/site/theme/controller.php

23 lines
537 B
PHP
Raw Permalink Normal View History

<?
namespace controller\core\site\theme;
use core\site\Theme;
use ui\Form;
class Api {
static function getForm(){
$data = json_decode( $_POST['data'] , true );
$x = Theme::init($_POST['id'] , $data);
$f = new Form( [
//Form::VALUES => json_decode( $_POST['data'] , true ) ,
Form::INPUTS => $x::getForm(),
Form::INPUT_ALL_THEME_FORCE => 'ms',
Form::FORM_WRAP => false,
] );
echo $f;
}
}