forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormElement.class.php
More file actions
98 lines (81 loc) · 4.08 KB
/
Copy pathFormElement.class.php
File metadata and controls
98 lines (81 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
// FromElement is the base class for controls on forms.
class FormElement {
var $id = ''; // Control id.
var $name; // Control name.
var $form_name = ''; // Form name the control is in.
var $value = ''; // Value of the control.
var $size = ''; // Control size.
var $max_length = ''; // Max length of text in control.
var $on_change = ''; // What happens when value of control changes.
var $on_click = ''; // What happens when the control is clicked.
var $label = ''; // Optional label for control.
var $style = ''; // Control style.
var $enabled = true; // Whether the control is enabled.
var $class = 'FormElement'; // Class name for the element.
function __construct() {
}
function getName() { return $this->name; }
function getClass() { return $this->class; }
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; }
function setId($id) { $this->id = $id; }
function getId() { return $this->id; }
function setSize($value) { $this->size = $value; }
function getSize() { return $this->size; }
function setLabel($label) { $this->label = $label; }
function getLabel() { return $this->label; }
function setMaxLength($value) { $this->max_length = $value; }
function getMaxLength() { return $this->max_length; }
function setStyle($value) { $this->style = $value; }
function getStyle() { return $this->style; }
function setEnabled($flag) { $this->enabled = $flag; }
function isEnabled() { return $this->enabled; }
function setOnChange($str) { $this->on_change = $str; }
function setOnClick($str) { $this->on_click = $str; }
function localize($i18n) {} // Localization occurs in derived classes and is dependent on control type.
// For example, in calendar control we need to localize day and month names.
// getHtml returns HTML for the element.
function getHtml() { return ''; }
// getLabelHtml returns HTML code for element label.
function getLabelHtml() { return '<label for="'.$this->id.'">'.$this->label.'</label>'; }
function toArray() {
return array(
'label'=>$this->getLabelHtml(),
'control'=>$this->getHtml());
}
}