Exemplo n.º 1
0
<?php

/*
 * CPHP is more free software. It is licensed under the WTFPL, which
 * allows you to do pretty much anything with it, without having to
 * ask permission. Commercial use is allowed, and no attribution is
 * required. We do politely request that you share your modifications
 * to benefit other developers, but you are under no enforced
 * obligation to do so :)
 * 
 * Please read the accompanying LICENSE document for the full WTFPL
 * licensing text.
 */
cphp_dependency_provides("cphp_router", "1.1");
class RouterException extends Exception
{
}
class CPHPRouter extends CPHPBaseClass
{
    public $routes = array();
    public $parameters = array();
    public $uVariables = array();
    public $custom_query = "";
    public $allow_slash = false;
    public $ignore_query = false;
    public function RouteRequest()
    {
        eval(extract_globals());
        // hack hackity hack hack
        if (!empty($this->custom_query)) {
            $requestpath = $this->custom_query;
Exemplo n.º 2
0
<?php

/*
 * CPHP is more free software. It is licensed under the WTFPL, which
 * allows you to do pretty much anything with it, without having to
 * ask permission. Commercial use is allowed, and no attribution is
 * required. We do politely request that you share your modifications
 * to benefit other developers, but you are under no enforced
 * obligation to do so :)
 * 
 * Please read the accompanying LICENSE document for the full WTFPL
 * licensing text.
 */
cphp_dependency_provides("cphp_errorhandler", "0.1");
define("CPHP_ERRORHANDLER_TYPE_ERROR", 90001);
define("CPHP_ERRORHANDLER_TYPE_INFO", 90002);
define("CPHP_ERRORHANDLER_TYPE_WARNING", 90003);
define("CPHP_ERRORHANDLER_TYPE_SUCCESS", 90004);
class CPHPErrorHandler
{
    public $sErrorType = CPHP_ERRORHANDLER_TYPE_ERROR;
    public $sLogError = true;
    public $sTitle = "";
    public $sMessage = "";
    public function __construct($type, $title, $message, $log = true)
    {
        $this->sErrorType = $type;
        $this->sLogError = $log;
        $this->sTitle = $title;
        $this->sMessage = $message;
    }