updating framework
This commit is contained in:
parent
a7c962462d
commit
9eca035c3f
@ -10,5 +10,6 @@ $config["SMTP_FROM"] = "HF-noreply@yoursite.com";
|
|||||||
$config["DEBUG"] = true;
|
$config["DEBUG"] = true;
|
||||||
$config["USE_HF_SMTP"] = true;
|
$config["USE_HF_SMTP"] = true;
|
||||||
$config["SITE_NAME"] = "default";
|
$config["SITE_NAME"] = "default";
|
||||||
|
$config["SITE_URL"] = "";
|
||||||
|
|
||||||
return $config;
|
return $config;
|
@ -12,4 +12,10 @@ class HF_Controller
|
|||||||
$this->core = $core;
|
$this->core = $core;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function loadRender($template, $parameters=array())
|
||||||
|
{
|
||||||
|
$this->tpl->loadTemplate($template);
|
||||||
|
return $this->tpl->render($parameters);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -23,27 +23,60 @@ class HF_Core
|
|||||||
$this->config = array_merge($config, $newconfig);
|
$this->config = array_merge($config, $newconfig);
|
||||||
if ($this->config["USE_H20_TPL"])
|
if ($this->config["USE_H20_TPL"])
|
||||||
$this->tpl = new H2o(null, array(
|
$this->tpl = new H2o(null, array(
|
||||||
"searchpath" => getcwd() . "/application/views/", "cache_dir" => "application/tmp/",
|
"searchpath" => getcwd() . "/application/views/",
|
||||||
|
"cache_dir" => "application/tmp/",
|
||||||
|
'cache' => 'file'
|
||||||
));
|
));
|
||||||
set_error_handler("HF_Core::error_handler");
|
set_error_handler("HF_Core::error_handler");
|
||||||
$this->findController();
|
$this->findController();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function siteURL()
|
||||||
|
{
|
||||||
|
if (isvarset($this->config["SITE_URL"]))
|
||||||
|
{
|
||||||
|
return $this->config["SITE_URL"];
|
||||||
|
}
|
||||||
|
$path = explode("/", $_SERVER["REQUEST_URI"]);
|
||||||
|
$path = array_filter($path, 'strlen');
|
||||||
|
if (count($path) == 0)
|
||||||
|
{
|
||||||
|
return $_SERVER["HTTP_HOST"] . "/";
|
||||||
|
} else {
|
||||||
|
if (in_array($this->classname, $path))
|
||||||
|
{
|
||||||
|
$newpath = implode("/", array_splice($path, 0, -2));
|
||||||
|
return $_SERVER["HTTP_HOST"] . "/" . $newpath . "/";
|
||||||
|
} else {
|
||||||
|
$newpath = implode("/", $path);
|
||||||
|
return $_SERVER["HTTP_HOST"] . "/" . $newpath . "/";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private function findController()
|
private function findController()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$request = $_SERVER["PHP_SELF"];
|
if (isvarset($_SERVER["PATH_INFO"]))
|
||||||
|
{
|
||||||
|
$request = $_SERVER["PATH_INFO"];
|
||||||
|
//$request = $_SERVER["PHP_SELF"];
|
||||||
$splitreq = explode("/", $request);
|
$splitreq = explode("/", $request);
|
||||||
$request = "";
|
/*$request = "";
|
||||||
for($i = 0; $i < count($splitreq); $i++)
|
for($i = 0; $i < count($splitreq); $i++)
|
||||||
{
|
{
|
||||||
if ($splitreq[$i] == "index.php")
|
if ($splitreq[$i] == "index.php")
|
||||||
{
|
{
|
||||||
$request = implode("/", array_splice($splitreq, $i+1));
|
$request = implode("/", array_splice($splitreq, $i+1));
|
||||||
}
|
}
|
||||||
|
}*/
|
||||||
|
//print $request;
|
||||||
|
//$request = substr($request, 1);
|
||||||
|
//$request = substr($request, 0, -1);
|
||||||
|
} else {
|
||||||
|
$request = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($request == "" || $request == "/")
|
if ($request == "" || $request == "/")
|
||||||
{
|
{
|
||||||
require("application/controllers/" . $this->config["DEFAULT_ROUTE"] . ".php");
|
require("application/controllers/" . $this->config["DEFAULT_ROUTE"] . ".php");
|
||||||
@ -74,7 +107,9 @@ class HF_Core
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->load404Controller();
|
include($path . $this->config["DEFAULT_ROUTE"] . ".php");
|
||||||
|
$this->loadController(new $this->config["DEFAULT_ROUTE"]($this->config, $this, $this->tpl), $this->config["DEFAULT_ROUTE"], "index");
|
||||||
|
//$this->load404Controller();
|
||||||
break;
|
break;
|
||||||
// throw exception controller not found
|
// throw exception controller not found
|
||||||
}
|
}
|
||||||
|
3
system/vendor/StackTracePrint.php
vendored
3
system/vendor/StackTracePrint.php
vendored
@ -19,6 +19,9 @@ function vdump() {
|
|||||||
foreach ($args as $arg)
|
foreach ($args as $arg)
|
||||||
var_dump($arg);
|
var_dump($arg);
|
||||||
|
|
||||||
|
var_dump($_SERVER);
|
||||||
|
var_dump($_COOKIE);
|
||||||
|
|
||||||
$str = ob_get_contents();
|
$str = ob_get_contents();
|
||||||
|
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
|
6
system/vendor/isvarset.php
vendored
Normal file
6
system/vendor/isvarset.php
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
function isvarset(&$var)
|
||||||
|
{
|
||||||
|
return (isset($var) && (!empty($var) || is_numeric($var))) ? true : false;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user