1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\admin\controller\widget;
- use app\admin\controller\AuthController;
- class Widgets extends AuthController
- {
-
- public function icon()
- {
- return $this->fetch('widget/icon');
- }
-
- public function userlist()
- {
- return $this->fetch('widget/icon');
- }
-
- public function productlist()
- {
- return $this->fetch('widget/icon');
- }
-
- public function newtlist()
- {
- return $this->fetch('widget/icon');
- }
- }
|