Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
form_question_type_datetime_management.inc
1 <?php
18 require_once SQ_INCLUDE_PATH.'/asset_management.inc';
19 
20 
32 {
33 
34 
40  {
41  $this->Asset_Management($pm);
42 
43  $this->vars = Array(
44  'default' => Array(
45  'added' => '0.0.1',
46  'type' => 'datetime',
47  'default' => '---------- --:--:--',
48  'parameters' => Array(
49  'allow_null' => TRUE,
50  ),
51  ),
52  'extra' => Array(
53  'added' => '0.0.1',
54  'type' => 'text',
55  'default' => '',
56  ),
57  'circa' => Array(
58  'added' => '0.0.1',
59  'type' => 'boolean',
60  'default' => FALSE,
61  'parameters' => Array(
62  'allow_empty' => FALSE,
63  ),
64  ),
65  'show' => Array(
66  'added' => '0.0.1',
67  'type' => 'serialise',
68  'default' => Array(
69  'd' => 1,
70  'm' => 1,
71  'y' => 1,
72  'h' => 1,
73  'i' => 1,
74  's' => 1,
75  'c' => 0,
76  'a' => 0,
77  ),
78  ),
79  'null' => Array(
80  'added' => '0.0.1',
81  'type' => 'serialise',
82  'default' => Array(
83  'd' => 0,
84  'm' => 0,
85  'y' => 0,
86  'h' => 0,
87  'i' => 0,
88  's' => 0,
89  ),
90  ),
91  'text' => Array(
92  'added' => '0.0.1',
93  'type' => 'serialise',
94  'default' => Array(
95  'd' => 0,
96  'm' => 0,
97  'y' => 0,
98  'h' => 0,
99  'i' => 0,
100  's' => 0,
101  ),
102  ),
103  'minimum' => Array(
104  'added' => '0.0.1',
105  'type' => 'datetime',
106  'default' => '---------- --:--:--',
107  'parameters' => Array(
108  'allow_null' => TRUE,
109  'show' => Array('d', 'y'),
110  ),
111  ),
112  'maximum' => Array(
113  'added' => '0.0.1',
114  'type' => 'datetime',
115  'default' => '---------- --:--:--',
116  'parameters' => Array(
117  'allow_null' => TRUE,
118  ),
119  ),
120  'print_format' => Array(
121  'added' => '0.3',
122  'type' => 'text',
123  'default' => 'Y-m-d H:i:s',
124  ),
125  'extras' => Array(
126  'added' => '0.3',
127  'type' => 'serialise',
128  'default' => Array(
129  'd' => '',
130  'm' => '',
131  'y' => '',
132  'h' => '',
133  'i' => '',
134  's' => '',
135  'a' => '',
136  ),
137  ),
138  );
139 
140  }//end constructor
141 
142 
143 }//end class
144 ?>