12345678910111213141516171819202122 |
- <?php
- $view
- ->fetch('.homepage h1 span', '<{Dever::load("service/user.info#username")}>')
- ->fetch
- (
- '.menu-list li',
- 'service/user.menu',
- array
- (
- 'self' => array
- (
- 'html' => '<{$v}>',
- 'class' => '<{Dever::last("exit", $i, $t)}>',
- ),
- )
- )
- ->display();
|