Esempio n. 1
0
 /**
  * Application-wide init()
  * @return type
  */
 public function init()
 {
     parent::init();
     $this->appendLayoutData('title', Application::getConfig()['sitename']);
 }
Esempio n. 2
0
        }
        switch ($errno) {
            case E_USER_ERROR:
                echo "<b>My ERROR</b> [{$errno}] {$errstr}<br />\n";
                echo "  Fatal error on line {$errline} in file {$errfile}";
                echo ", PHP " . PHP_VERSION . " (" . PHP_OS . ")<br />\n";
                echo "Aborting...<br />\n";
                exit(1);
                break;
            case E_USER_WARNING:
                echo "<b>My WARNING</b> [{$errno}] {$errstr}<br />\n";
                break;
            case E_USER_NOTICE:
                echo "<b>My NOTICE</b> [{$errno}] {$errstr}<br />\n";
                break;
            default:
                echo "Unknown error type: [{$errno}] {$errstr}<br />\n";
                break;
        }
        // Don't execute PHP internal error handler
        return true;
    }
}
// no need to work for this yet... maybe later...
// $old_error_handler = set_error_handler("minimvcfErrorHandler");
use Minimvcf\Application;
/**
 * Launch all
 */
$app = Application::getInstance();
$app->run();