123456789101112131415161718192021222324 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | visual.php 模板可视化
- |--------------------------------------------------------------------------
- */
- namespace MazeApp\Manage\Lib;
- use Maze;
- class Visual
- {
- /**
- * 工具包
- *
- * @return string
- */
- static public function tool()
- {
- //merge
- $html = '<script src="http://localhost/mazephp/assets/manage/js/tool.js"></script>';
- return $html;
- }
- }
|