2daf948e96301bf212904f6ff5194a6618226499.svn-base 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | home
  5. |--------------------------------------------------------------------------
  6. */
  7. $view
  8. ->fetch('body@class', 'theme-<{Maze::load("manage/auth.config#template")}>')
  9. ->fetch('#panel-notice .panel-heading', '公告')
  10. ->fetch
  11. (
  12. '#panel-notice li',
  13. 'manage/auth.notice',
  14. array
  15. (
  16. 'a' => array
  17. (
  18. 'href' => '<{Maze::url("notice?where_id=".$v.id."&where_config=".$v.config)}>',
  19. 'title' => '<{$v.name}>',
  20. 'html' => '<{$v.name}>',
  21. ),
  22. )
  23. )
  24. ->fetch
  25. (
  26. '#panel-project a',
  27. 'manage/menu.fast',
  28. array
  29. (
  30. 'self' => array
  31. (
  32. 'href' => '<{$v.link}>',
  33. 'title' => '<{$v.name}>',
  34. 'html' => '<{$v.name}>',
  35. 'style' => 'margin-left:10px;',
  36. ),
  37. )
  38. )
  39. //->fetch('#panel-info .panel-heading', '重要信息')
  40. ->fetch('#panel-contact h3', 'manage/auth.config#info')
  41. ->fetch('#panel-contact address', 'manage/auth.config#content')
  42. # display
  43. ->display();