]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/class_BaseFrameworkSystem.php
CAPTCHA support basicly finished (weak CAPTCHA!)
[shipsimu.git] / inc / classes / main / class_BaseFrameworkSystem.php
index ea3201f20a0cfbcb0c5d5555504e607d7d737696..3c1b5fc9ac8c38e5fd09e5d9629e0d8322c6a599 100644 (file)
@@ -63,6 +63,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         */
        private $resolverInstance = null;
 
+       /**
+        * Template engine instance
+        */
+       private $templateInstance = null;
+
        /**
         * The real class name
         */
@@ -141,11 +146,13 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        const EXCEPTION_MISSING_FILE_IO_HANDLER      = 0x02f;
        const EXCEPTION_MISSING_ELEMENT              = 0x030;
        const EXCEPTION_HEADERS_ALREADY_SENT         = 0x031;
-       const EXCEPTION_DEFAUL_CONTROLLER_GONE       = 0x032;
+       const EXCEPTION_DEFAULT_CONTROLLER_GONE      = 0x032;
        const EXCEPTION_CLASS_NOT_FOUND              = 0x033;
        const EXCEPTION_REQUIRED_INTERFACE_MISSING   = 0x034;
        const EXCEPTION_FATAL_ERROR                  = 0x035;
        const EXCEPTION_FILE_NOT_FOUND               = 0x036;
+       const EXCEPTION_ASSERTION_FAILED             = 0x037;
+       const EXCEPTION_FILE_CANNOT_BE_READ          = 0x038;
 
        /**
         * In the super constructor these system classes shall be ignored or else
@@ -255,9 +262,12 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                                } elseif (is_null($arg)) {
                                        // Null
                                        $argsString .= "(null)";
+                               } elseif (is_resource($arg)) {
+                                       // Resource
+                                       $argsString .= "(resource)";
                                } else {
                                        // Unknown type (please report!)
-                                       $argsString .= $arg."(unknown!)";
+                                       $argsString .= $arg."(<em>unknown!</em>)";
                                }
 
                                // Add comma
@@ -265,14 +275,16 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        }
 
                        // Remove last comma
-                       if (substr($argsString, -2, 1) === ",") $argsString = substr($argsString, 0, -2);
+                       if (substr($argsString, -2, 1) === ",") {
+                               $argsString = substr($argsString, 0, -2);
+                       } // END - if
                } else {
                        // Invalid arguments!
                        $argsString = sprintf("!INVALID:%s!", $args);
                }
 
                // Output stub message
-               $this->getDebugInstance()->output(sprintf("[%s::%s] Stub! Args: %s",
+               $this->getDebugInstance()->output(sprintf("[%s-&gt;%s] Stub! Args: %s",
                        $this->__toString(),
                        $methodName,
                        $argsString
@@ -314,6 +326,25 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                }
        }
 
+       /**
+        * Setter for template engine instances
+        *
+        * @param       $templateInstance       An instance of a template engine class
+        * @return      void
+        */
+       protected final function setTemplateInstance (CompileableTemplate $templateInstance) {
+               $this->templateInstance = $templateInstance;
+       }
+
+       /**
+        * Getter for template engine instances
+        *
+        * @return      $templateInstance       An instance of a template engine class
+        */
+       protected final function getTemplateInstance () {
+               return $this->templateInstance;
+       }
+
        /**
         * Setter for search instance
         *
@@ -368,7 +399,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         *
         * @return      $cfgInstance    Configuration instance
         */
-       protected final function getConfigInstance () {
+       public final function getConfigInstance () {
                $cfgInstance = Registry::getRegistry()->getInstance('config');
                return $cfgInstance;
        }
@@ -879,7 +910,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
        }
 
        /**
-        * Prepare the template engine (TemplateEngine by default) for a given
+        * Prepare the template engine (WebTemplateEngine by default) for a given
         * application helper instance (ApplicationHelper by default).
         *
         * @param               $appInstance                    An application helper instance or
@@ -961,9 +992,9 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                $backtrace = debug_backtrace();
 
                // Generate the class::method string
-               $methodName = "UnknownClass::unknownMethod";
+               $methodName = "UnknownClass-&gt;unknownMethod";
                if ((isset($backtrace[1]['class'])) && (isset($backtrace[1]['function']))) {
-                       $methodName = $backtrace[1]['class']."::".$backtrace[1]['function'];
+                       $methodName = $backtrace[1]['class']."-&gt;".$backtrace[1]['function'];
                }
 
                // Construct the full message
@@ -992,7 +1023,7 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
         *
         * @return      void
         */
-       public function debugBacktrace () {
+       public function debugBackTrace () {
                // Sorry, there is no other way getting this nice backtrace
                print "<pre>\n";
                debug_print_backtrace();