2015-02-14 00:12:54 -05:00
|
|
|
<?php
|
|
|
|
$theme = array(
|
|
|
|
'name' => 'IRC',
|
|
|
|
'description' => 'Display a link to the lainchan irc',
|
|
|
|
'version' => 'v1',
|
|
|
|
|
|
|
|
'config' => array(
|
|
|
|
array('title' => 'Page title',
|
|
|
|
'name' => 'title',
|
|
|
|
'type' => 'text'),
|
|
|
|
|
|
|
|
array('title' => 'Slogan',
|
|
|
|
'name' => 'subtitle',
|
|
|
|
'type' => 'text',
|
|
|
|
'comment' => '(optional)'),
|
|
|
|
|
|
|
|
array('title' => 'File',
|
|
|
|
'name' => 'file',
|
|
|
|
'type' => 'text',
|
2016-10-01 12:15:34 -04:00
|
|
|
'default' => 'irc.html'),
|
|
|
|
|
|
|
|
array('title' => 'Channel',
|
|
|
|
'name' => 'channel',
|
|
|
|
'type' => 'text',
|
|
|
|
'default' => 'lainchan')),
|
2015-02-14 00:12:54 -05:00
|
|
|
|
|
|
|
'build_function' => 'irc_build');
|
|
|
|
?>
|