* zin: refactor dirs

This commit is contained in:
Hao Sun
2023-01-18 14:23:27 +08:00
parent 7d206383a2
commit 71d4ef16e1
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
* @link https://www.zentao.net
*/
require_once 'h5.class.php';
require_once 'core/h5.class.php';
function h() {return new h5(func_get_args());}
function button() {return call_user_func_array('h5::button', func_get_args());}
+6 -1
View File
@@ -1,6 +1,11 @@
<?php
require_once 'helper.php';
require_once 'core/h5.func.php';
require_once 'h5.func.php';
function hx()
{
}
function btn() {return createWg('btn', func_get_args());}
function page() {return createWg('page', func_get_args());}
+2 -1
View File
@@ -1,4 +1,5 @@
<?php
require_once __DIR__ . DS . 'config.php';
require_once __DIR__ . DS . 'helper.php';
require_once __DIR__ . DS . 'wg.php';
require_once __DIR__ . DS . 'h5.func.php';
require_once __DIR__ . DS . 'wg.func.php';