1: <?php
2: /**
3: * TbFormButtonElement class file.
4: * @author Christoffer Niska <[email protected]>
5: * @copyright Copyright © Christoffer Niska 2013-
6: * @license http://www.opensource.org/licenses/bsd-license.php New BSD License
7: * @package bootstrap.form
8: */
9:
10: /**
11: * Bootstrap form button element.
12: */
13: class TbFormButtonElement extends CFormButtonElement
14: {
15: /**
16: * Returns this button.
17: * @return string the rendering result.
18: */
19: public function render()
20: {
21: return TbHtml::btn($this->type, $this->label, $this->attributes);
22: }
23: }