view.php 384 B

12345678910111213141516171819202122232425
  1. <?php
  2. $view
  3. ->import('inc/head')
  4. ->set('info', 'task/help.one')
  5. ->set('title', '$info.name')
  6. ->set('name', 'help-article')
  7. ->set('nav', 'user')
  8. ->fetch('header .back@href', '<{Dever::url("help/list", "main")}>')
  9. ->render('info', array
  10. (
  11. '.wrapper' => array
  12. (
  13. 'h1' => '$v.name',
  14. 'section' => '$v.content',
  15. ),
  16. ))
  17. ->import('inc/foot')
  18. ->display();