blob: eabcbeab20707af537460c225b903487a1402122 (
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
31
32
33
34
35
36
|
<?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);
}
public function validate()
{
// Submit buttons do not need to be validated
return $this->is_valid = TRUE;
}
} // End Form Submit
|