You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
787 B
33 lines
787 B
<?php |
|
class clock extends Module { |
|
|
|
protected static $paramsList = array( |
|
'visibility', |
|
'x', |
|
'y' |
|
); |
|
|
|
public $params = array(); |
|
|
|
public function __construct($params){ |
|
$this->setParams($params); |
|
echo '<script type="text/javascript" src="js/jquery.jclock.js"></script>'; |
|
echo '<div class="jclock" id="clock" style="left:'.$params['x'].'; top:'.$params['y'].';"></div>'; |
|
} |
|
|
|
private function setParams($params){ |
|
$this->params = $params; |
|
} |
|
|
|
public static function start($params){ |
|
$clock = new clock($params); |
|
} |
|
|
|
public static function updateConfig($updated){ |
|
foreach ($updated as $what=>$withWhat){ |
|
if(in_array($what, self::$paramsList)){ |
|
call_user_func(array(get_class(), "set".ucfirst($what)), $withWhat); |
|
} |
|
} |
|
} |
|
} |