Skip to content

Instantly share code, notes, and snippets.

@BlackScorp
Created February 13, 2013 15:04
Show Gist options
  • Save BlackScorp/4945209 to your computer and use it in GitHub Desktop.
Save BlackScorp/4945209 to your computer and use it in GitHub Desktop.
class Form extends Kohana_Form{
public static function input($name, $value = NULL, array $attributes = NULL)
{
if ( ! isset($attributes['id']))
{
// Default type is text
$attributes['id'] = $name;
}
return parent::input($name,$value,$attributes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment