summaryrefslogtreecommitdiff
path: root/modules/forge/libraries/Form_Submit.php
blob: 1fb30c89c32b9f7bdfeb6d114ffddc9888fb4d9f (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 defined("SYSPATH") or die("No direct script access.");
/**
 * 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