| @@ 177-181 (lines=5) @@ | ||
| 174 | case 'show_on_menu' : |
|
| 175 | $value = (int) $value; |
|
| 176 | break; |
|
| 177 | case 'admin_init_page' : |
|
| 178 | if ( in_array( 'admin_init_page', $required ) && ! $value instanceof EE_Admin_Page_Init ) { |
|
| 179 | throw new EE_Error( sprintf( __('The value for the "admin_init_page" argument must be an instance of an EE_Admin_Page_Init object. Instead %s was given as the value.', 'event_espresso'), print_r($value, TRUE) ) ); |
|
| 180 | } |
|
| 181 | break; |
|
| 182 | case 'menu_callback' : |
|
| 183 | break; |
|
| 184 | ||
| @@ 678-690 (lines=13) @@ | ||
| 675 | } |
|
| 676 | break; |
|
| 677 | // TEST #9 : verify config object |
|
| 678 | case 9 : |
|
| 679 | if (! $config_obj instanceof EE_Config_Base) { |
|
| 680 | if ($display_errors) { |
|
| 681 | throw new EE_Error( |
|
| 682 | sprintf( |
|
| 683 | __('The "%s" class is not an instance of EE_Config_Base.', 'event_espresso'), |
|
| 684 | print_r($config_obj, true) |
|
| 685 | ) |
|
| 686 | ); |
|
| 687 | } |
|
| 688 | return false; |
|
| 689 | } |
|
| 690 | break; |
|
| 691 | } |
|
| 692 | } |
|
| 693 | } catch (EE_Error $e) { |
|