time() public method

Creates a time form element
public time ( string $name, null $value = null, array $attributes = [] ) : string
$name string The name of the element
$value null
$attributes array
return string
Example #1
0
 /**
  * Creates a time form element
  *
  * @param string $name The name of the element
  * @param null $value
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function time($name, $value = null, $attributes = array())
 {
     return \Bootstrapper\Form::time($name, $value, $attributes);
 }