function getName() { return $this->name; }
function getClass() { return $this->class; }
-
- // TODO: refactoring ongoing down from here.
- function setFormName($name) { $this->form_name = $name; }
- function getFormName() { return $this->form_name; }
-
- function setValue($value) { $this->value = $value; }
- function getValue() { return $this->value; }
-
- function setValueSafe($value) { $this->value = $value;}
- function getValueSafe() { return $this->value; }
+ function setFormName($name) { $this->form_name = $name; }
+ function getFormName() { return $this->form_name; }
+
+ function setValue($value) { $this->value = $value; }
+ function getValue() { return $this->value; }
+
+ // Safe function variations are used to store/read values in/from user session for further reuse.
+ // They may convert data in derived classes to some standard form. For example, floats are stored
+ // with a dot delimiter (not comma), and dates are stored in DB_DATEFORMAT.
+ // This allows to reuse data in session even when user changes the deliminter or date format.
+ function setValueSafe($value) { $this->value = $value;}
+ function getValueSafe() { return $this->value; }
+
+ // TODO: refactoring ongoing down from here.
function setId($id) { $this->id = $id; }
function getId() { return $this->id; }
<br>
<table cellspacing="0" cellpadding="4" width="100%" border="0">
<tr>
- <td align="center"> Anuko Time Tracker 1.10.38.3610 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+ <td align="center"> Anuko Time Tracker 1.10.38.3611 | Copyright © <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
<a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
<a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
<a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>