123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | home
- |--------------------------------------------------------------------------
- */
- $view
- ->fetch('body@class', 'theme-<{Maze::load("manage/auth.config#template")}>')
- ->fetch('#panel-notice .panel-heading', '公告')
- ->fetch
- (
- '#panel-notice li',
- 'manage/auth.notice',
- array
- (
- 'a' => array
- (
- 'href' => '<{Maze::url("notice?where_id=".$v.id."&where_config=".$v.config)}>',
- 'title' => '<{$v.name}>',
- 'html' => '<{$v.name}>',
- ),
- )
- )
- ->fetch
- (
- '#panel-project a',
- 'manage/menu.fast',
- array
- (
- 'self' => array
- (
- 'href' => '<{$v.link}>',
- 'title' => '<{$v.name}>',
- 'html' => '<{$v.name}>',
- 'style' => 'margin-left:10px;',
- ),
- )
- )
- //->fetch('#panel-info .panel-heading', '重要信息')
- ->fetch('#panel-contact h3', 'manage/auth.config#info')
- ->fetch('#panel-contact address', 'manage/auth.config#content')
- # display
- ->display();
|