month() public method

Creates a month input
public month ( 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 month input
  *
  * @param string $name The name of the element
  * @param null $value
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function month($name, $value = null, $attributes = array())
 {
     return \Bootstrapper\Form::month($name, $value, $attributes);
 }