question.php 631 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. $view
  3. ->fetch
  4. (
  5. '.question-item',
  6. 'company/info.question',
  7. array
  8. (
  9. 'self' => array
  10. (
  11. 'html' => '<{$v.name}>',
  12. 'href' => '#question<{$v.id}>',
  13. ),
  14. )
  15. )
  16. ->fetch
  17. (
  18. '.item',
  19. 'company/info.question',
  20. array
  21. (
  22. 'self' => array
  23. (
  24. 'id' => 'question<{$v.id}>',
  25. ),
  26. '.item-title' => array
  27. (
  28. 'html' => '· <{$v.name}>',
  29. ),
  30. '.item-con' => array
  31. (
  32. 'html' => '<{$v.content}>',
  33. ),
  34. )
  35. );
  36. include('inc/foot.php');
  37. include('inc/common.php');