00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class Varien_Data_Form_Abstract extends Varien_Object
00036 {
00037
00038
00039
00040
00041
00042
00043 protected $_elements;
00044
00045
00046
00047
00048
00049
00050 protected $_types = array();
00051
00052
00053
00054
00055
00056
00057 public function __construct($attributes = array())
00058 {
00059 parent::__construct($attributes);
00060 }
00061
00062
00063
00064
00065
00066
00067
00068
00069 public function addType($type, $className)
00070 {
00071 $this->_types[$type] = $className;
00072 return $this;
00073 }
00074
00075
00076
00077
00078
00079
00080 public function getElements()
00081 {
00082 if (empty($this->_elements)) {
00083 $this->_elements = new Varien_Data_Form_Element_Collection($this);
00084 }
00085 return $this->_elements;
00086 }
00087
00088
00089
00090
00091
00092
00093
00094 public function addElement(Varien_Data_Form_Element_Abstract $element, $after=null)
00095 {
00096 $element->setForm($this);
00097 $this->getElements()->add($element, $after);
00098 return $this;
00099 }
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114 public function addField($elementId, $type, $config, $after=false)
00115 {
00116 if (isset($this->_types[$type])) {
00117 $className = $this->_types[$type];
00118 }
00119 else {
00120 $className = 'Varien_Data_Form_Element_'.ucfirst(strtolower($type));
00121 }
00122 $element = new $className($config);
00123 $element->setId($elementId);
00124 if ($element->getRequired()) {
00125 $element->addClass('required-entry');
00126 }
00127 $this->addElement($element, $after);
00128 return $element;
00129 }
00130
00131
00132
00133
00134
00135
00136
00137 public function removeField($elementId)
00138 {
00139 $this->getElements()->remove($elementId);
00140 return $this;
00141 }
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151 public function addFieldset($elementId, $config, $after=false)
00152 {
00153 $element = new Varien_Data_Form_Element_Fieldset($config);
00154 $element->setId($elementId);
00155 $this->addElement($element, $after);
00156 return $element;
00157 }
00158
00159
00160
00161
00162
00163
00164
00165
00166 public function addColumn($elementId, $config)
00167 {
00168 $element = new Varien_Data_Form_Element_Column($config);
00169 $element->setForm($this)
00170 ->setId($elementId);
00171 $this->addElement($element);
00172 return $element;
00173 }
00174
00175
00176
00177
00178
00179
00180
00181 public function __toArray(array $arrAttributes = array())
00182 {
00183 $res = array();
00184 $res['config'] = $this->getData();
00185 $res['formElements']= array();
00186 foreach ($this->getElements() as $element) {
00187 $res['formElements'][] = $element->toArray();
00188 }
00189 return $res;
00190 }
00191
00192 }