1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
||
9 | class EE_Month_Input extends EE_Select_Input{ |
||
10 | |||
11 | /** |
||
12 | * @param bool $leading_zero |
||
13 | * @param array $input_settings |
||
14 | * @param bool $january_is_month_1 whether january should have value of 1; or it should be month 0 |
||
15 | */ |
||
16 | function __construct( $leading_zero = false, $input_settings = array(), $january_is_month_1 = true){ |
||
32 | |||
33 | /** |
||
34 | * Changes int 1 to 01, etc. Useful with array_walk |
||
35 | * @param int $input |
||
36 | * @param mixed $key |
||
37 | */ |
||
38 | protected function _zero_pad( &$input, $key ) { |
||
41 | } |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.