function __construct($name, $title = null, $value = "")
 {
     parent::__construct($name, $title, $value);
 }
 public function __construct($name, $title = null, $value = "")
 {
     $this->setConfig('timeformat', 'HH:mm:s');
     $this->setInterval($this->Config()->interval);
     parent::__construct($name, $title, $value);
 }
 function __construct($name, $title = null, $value = "")
 {
     parent::__construct($name, $title, $value);
     $this->config += self::$default_config;
 }
 function __construct($name, $title = null, $value = "", $timeformat = 'H:i a')
 {
     parent::__construct($name, $title, $value, $timeformat);
 }