@@ 226-228 (lines=3) @@ | ||
223 | case self::BUTTON_BUTTON: |
|
224 | return CHtml::htmlButton($this->label, $this->htmlOptions); |
|
225 | ||
226 | case self::BUTTON_SUBMIT: |
|
227 | $this->htmlOptions['type'] = 'submit'; |
|
228 | return CHtml::htmlButton($this->label, $this->htmlOptions); |
|
229 | ||
230 | case self::BUTTON_RESET: |
|
231 | $this->htmlOptions['type'] = 'reset'; |
|
@@ 230-232 (lines=3) @@ | ||
227 | $this->htmlOptions['type'] = 'submit'; |
|
228 | return CHtml::htmlButton($this->label, $this->htmlOptions); |
|
229 | ||
230 | case self::BUTTON_RESET: |
|
231 | $this->htmlOptions['type'] = 'reset'; |
|
232 | return CHtml::htmlButton($this->label, $this->htmlOptions); |
|
233 | ||
234 | case self::BUTTON_SUBMITLINK: |
|
235 | return CHtml::linkButton($this->label, $this->htmlOptions); |