The version of vichan running on lainchan.org
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

29 行
770B

  1. <?php
  2. $theme = array(
  3. 'name' => 'IRC',
  4. 'description' => 'Display a link to the lainchan irc',
  5. 'version' => 'v1',
  6. 'config' => array(
  7. array('title' => 'Page title',
  8. 'name' => 'title',
  9. 'type' => 'text'),
  10. array('title' => 'Slogan',
  11. 'name' => 'subtitle',
  12. 'type' => 'text',
  13. 'comment' => '(optional)'),
  14. array('title' => 'File',
  15. 'name' => 'file',
  16. 'type' => 'text',
  17. 'default' => 'irc.html'),
  18. array('title' => 'Channel',
  19. 'name' => 'channel',
  20. 'type' => 'text',
  21. 'default' => 'lainchan')),
  22. 'build_function' => 'irc_build');
  23. ?>