changelog.html.php 491 B

1234567891011121314151617181920
  1. <?php
  2. namespace zin;
  3. panel
  4. (
  5. set::title($version->explain),
  6. set::shadow(false),
  7. div
  8. (
  9. setID('details'),
  10. zui::nestedList
  11. (
  12. set::items(array(array(
  13. 'title' => $lang->index->detailed,
  14. 'className' => 'bg-surface-strong text-primary rounded',
  15. 'items' => array(array('className' => 'bg-gray-100 text-fore', 'content' => array('html' => $version->log)))
  16. )))
  17. )
  18. )
  19. );