Files
gallery3/modules/forge/libraries/Form_Submit.php
2009-05-26 22:28:06 -07:00

30 lines
600 B
PHP

<?php defined("SYSPATH") or die("No direct script access.");
/**
* FORGE submit input library.
*
* $Id: Form_Submit.php 3326 2008-08-09 21:24:30Z Shadowhand $
*
* @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