Restructured the init process a bit of main classes.

This commit is contained in:
2009-08-17 00:41:32 +03:00
parent 2898a68af5
commit e7d4fbe567
3 changed files with 70 additions and 4 deletions

View File

@@ -46,8 +46,12 @@ class ActionEnvironment {
function __construct () {
}
function init () {
$this->set_include_paths();
$this->load_environment_file();
$this->load_environment_file();
}
function __wakeup () {

46
vendor/zynapse/action_view.php vendored Normal file
View File

@@ -0,0 +1,46 @@
<?php
/*
ActionView - output rendering
http://www.zynapse.org/
Copyright (c) 2009 Jim Myhrberg.
----------
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
----------
*/
class ActionView {
function __construct () {
}
function init () {
}
}
?>

View File

@@ -46,13 +46,14 @@ class Zynapse {
function init () {
require_once(ZNAP_LIB_ROOT . "/action_environment.php");
require_once(ZNAP_LIB_ROOT . "/action_base.php");
require_once(ZNAP_LIB_ROOT . "/action_view.php");
require_once(ZNAP_LIB_ROOT . "/active_session.php");
$start = microtime(true);
self::$env = new ActionEnvironment();
self::$base = new ActionBase();
self::$base->init();
self::init_env();
self::init_base();
self::init_view();
echo microtime(true) - $start . "<br />\n";
echo "hello world<br />\n";
@@ -62,6 +63,21 @@ class Zynapse {
// echo serialize(self::$base) . "<br />\n<br />\n";
}
function init_env () {
self::$env = new ActionEnvironment();
self::$env->init();
}
function init_base () {
self::$base = new ActionBase();
self::$base->init();
}
function init_view () {
self::$view = new ActionView();
self::$view->init();
}
}
?>