Zaphpa_Callback_Util::loadFile PHP Method

loadFile() private static method

private static loadFile ( $file )
    private static function loadFile($file)
    {
        if (file_exists($file)) {
            include_once $file;
        } else {
            throw new Zaphpa_CallbackFileNotFoundException('Controller file not found');
        }
    }
Zaphpa_Callback_Util