Added clock;

Users are now able to change the clock in the ACP;
This commit is contained in:
Marc Alexander
2010-08-29 13:30:56 +00:00
parent 6a182d6638
commit 3097cd5de7
5 changed files with 147 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
<?php
/**
* @package Portal - Clock
* @version $Id$
* @copyright (c) 2009, 2010 Board3 Portal Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* @package Clock
*/
class portal_clock_module
{
/**
* Allowed columns: Just sum up your options (Exp: left + right = 10)
* top 1
* left 2
* center 4
* right 8
* bottom 16
*/
var $columns = 10;
/**
* Default modulename
*/
var $name = 'CLOCK';
/**
* Default module-image:
* file must be in "{T_THEME_PATH}/images/portal/"
*/
var $image_src = 'portal_clock.png';
/**
* module-language file
* file must be in "language/{$user->lang}/mods/portal/"
*/
var $language = 'portal_clock_module';
function get_template_side($module_id)
{
global $config, $template;
$template->assign_vars(array(
'CLOCK_SRC' => $config['board3_clock_src'],
));
return 'clock_side.html';
}
function get_template_acp($module_id)
{
return array(
'title' => 'ACP_PORTAL_CLOCK_SETTINGS',
'vars' => array(
'legend1' => 'ACP_PORTAL_CLOCK_SETTINGS',
'board3_clock_src' => array('lang' => 'ACP_PORTAL_CLOCK_SRC', 'validate' => 'string', 'type' => 'text:50:200', 'explain' => false),
),
);
}
/**
* API functions
*/
function install($module_id)
{
set_config('board3_clock_src', 'board3clock.swf');
return true;
}
function uninstall($module_id)
{
global $db;
$del_config = array(
'board3_clock_src',
);
$sql = 'DELETE FROM ' . CONFIG_TABLE . '
WHERE ' . $db->sql_in_set('config_name', $del_config);
return $db->sql_query($sql);
}
}
?>