Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
form_question_type_text_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' => 'text',
47  'default' => '',
48  ),
49  'width' => Array(
50  'added' => '0.0.1',
51  'type' => 'text',
52  'default' => '30',
53  ),
54  'height' => Array(
55  'added' => '0.0.1',
56  'type' => 'text',
57  'default' => '1',
58  ),
59  'max' => Array(
60  'added' => '0.0.1',
61  'type' => 'text',
62  'default' => '300',
63  ),
64  'extra' => Array(
65  'added' => '0.0.1',
66  'type' => 'text',
67  'default' => '',
68  ),
69  'required' => Array(
70  'added' => '0.0.1',
71  'type' => 'boolean',
72  'default' => FALSE,
73  'parameters' => Array(
74  'allow_empty' => FALSE,
75  ),
76  'description' => 'DEPRECATED AS OF v0.3',
77  ),
78  );
79 
80  }//end constructor
81 
82 
83 }//end class
84 ?>