PATH:
home
/
letacommog
/
letaweb
/
admin
/
modules
/
countdown
<?php class CWidgetCountdown extends CWidgetModule { public $start_now, $end_now, $start,$end,$units,$empty_label,$max,$digits,$suffix_message, $post_message; protected function decodeData() { $this->start = getIndex($this->module_data, 'start', null); $this->start_now = getIndex($this->module_data, 'start_now', false, 'boolean'); $this->end_now = getIndex($this->module_data, 'end_now', false, 'boolean'); $this->end = getIndex($this->module_data, 'end', null); $this->units = getIndex($this->module_data, 'units',array('128'=>1,'64'=>1,'32'=>1) ); $this->empty_label = getIndex($this->module_data, 'empty_label',''); $this->max = getIndex($this->module_data, 'max', 11); $this->digits = getIndex($this->module_data, 'digits', 0); $this->suffix_message = getIndex($this->module_data, 'suffix_message', ''); $this->post_message = getIndex($this->module_data, 'post_message', ''); } }
[+]
..
[-] backend.php
[edit]
[-] backend.js
[edit]
[-] frontend_view.php
[edit]
[-] frontend_class.php
[edit]
[-] frontend_script.php
[edit]