blob: e056fcf56a87f81d509aab0431bc6b7b1f62db4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* FORGE submit input library.
*
* $Id$
*
* @package Forge
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Form_Submit_Core extends Form_Input {
protected $data = array
(
'type' => 'submit',
'class' => 'submit'
);
protected $protect = array('type');
public function render()
{
$data = $this->data;
unset($data['label']);
return form::submit($data);
}
} // End Form Submit
|