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 class Varien_Data_Form_Element_Checkboxes extends Varien_Data_Form_Element_Abstract
00035 {
00036
00037
00038
00039
00040
00041 public function __construct($attributes=array())
00042 {
00043 parent::__construct($attributes);
00044 $this->setType('checkbox');
00045 $this->setExtType('checkbox');
00046 }
00047
00048
00049
00050
00051
00052
00053 public function getHtmlAttributes()
00054 {
00055 return array('type', 'name', 'class', 'style', 'checked', 'onclick', 'onchange', 'disabled');
00056 }
00057
00058
00059
00060
00061
00062
00063 protected function _prepareValues() {
00064 $options = array();
00065 $values = array();
00066
00067 if ($this->getValues()) {
00068 if (!is_array($this->getValues())) {
00069 $options = array($this->getValues());
00070 }
00071 else {
00072 $options = $this->getValues();
00073 }
00074 }
00075 elseif ($this->getOptions() && is_array($this->getOptions())) {
00076 $options = $this->getOptions();
00077 }
00078
00079 foreach ($options as $k => $v) {
00080 if (is_string($v)) {
00081 $values[] = array(
00082 'label' => $v,
00083 'value' => $k
00084 );
00085 }
00086 elseif (isset($v['value'])) {
00087 if (!isset($v['label'])) {
00088 $v['label'] = $v['value'];
00089 }
00090 $values[] = array(
00091 'label' => $v['label'],
00092 'value' => $v['value']
00093 );
00094 }
00095 }
00096
00097 return $values;
00098 }
00099
00100
00101
00102
00103
00104
00105 public function getElementHtml()
00106 {
00107 $values = $this->_prepareValues();
00108
00109 if (!$values) {
00110 return '';
00111 }
00112
00113 $html = '<ul class="checkboxes">';
00114 foreach ($values as $value) {
00115 $html.= $this->_optionToHtml($value);
00116 }
00117 $html .= '</ul>'
00118 . $this->getAfterElementHtml();
00119
00120 return $html;
00121 }
00122
00123 public function getChecked($value)
00124 {
00125 if ($checked = $this->getValue()) {
00126 }
00127 elseif ($checked = $this->getData('checked')) {
00128 }
00129 else {
00130 return ;
00131 }
00132 if (!is_array($checked)) {
00133 $checked = array(strval($checked));
00134 }
00135 else {
00136 foreach ($checked as $k => $v) {
00137 $checked[$k] = strval($v);
00138 }
00139 }
00140
00141 if (array_search(strval($value), $checked)) {
00142 return 'checked';
00143 }
00144 return ;
00145 }
00146
00147 public function getDisabled($value)
00148 {
00149 if ($disabled = $this->getData('disabled')) {
00150 if (!is_array($disabled)) {
00151 $disabled = array(strval($disabled));
00152 }
00153 else {
00154 foreach ($disabled as $k => $v) {
00155 $disabled[$k] = strval($v);
00156 }
00157 }
00158 if (array_search(strval($value), $disabled)) {
00159 return 'disabled';
00160 }
00161 }
00162 return ;
00163 }
00164
00165 public function getOnclick($value)
00166 {
00167 if ($onclick = $this->getData('onclick')) {
00168 return str_replace('$value', $value, $onclick);
00169 }
00170 return ;
00171 }
00172
00173 public function getOnchange($value)
00174 {
00175 if ($onchange = $this->getData('onchange')) {
00176 return str_replace('$value', $value, $onchange);
00177 }
00178 return ;
00179 }
00180
00181
00182
00183
00184
00185
00186
00187
00188
00189 protected function _optionToHtml($option)
00190 {
00191 $id = $this->getHtmlId().'_'.$this->_escape($option['value']);
00192
00193 $html = '<li><input id="'.$id.'"';
00194 foreach ($this->getHtmlAttributes() as $attribute) {
00195 if ($value = $this->getDataUsingMethod($attribute, $option['value'])) {
00196 $html .= ' '.$attribute.'="'.$value.'"';
00197 }
00198 }
00199 $html .= ' value="'.$option['value'].'" />'
00200 . ' <label for="'.$id.'">' . $option['label'] . '</label></li>'
00201 . "\n";
00202 return $html;
00203 }
00204 }