Code

Modified test1 to use smarty
[gosa.git] / tests / ListTest / 1 / index.php
index e7d3430f9dec5661ffbc5d2b06bc7c5e5a766506..79e7afcaff5c82551f018271ec70607e4134922a 100644 (file)
@@ -23,14 +23,28 @@ function normalizePreg($input)
 }
 
 
+function get_smarty()
+{
+       echo "Smarty fake in each ./tests/ListTest[1-9]/index.php";
+       date_default_timezone_set("europe/berlin");
+       $smarty = new smarty;
+       /* Set template compile directory */
+       $smarty->compile_dir= '/var/spool/gosa/';
+       $smarty->template_dir = '../';
+       $smarty->caching= false;
+       $smarty->php_handling= SMARTY_PHP_REMOVE;
+       return($smarty);
+}
+
+
 /* Initiate autoloader... */
-require_once("../../include/autoload.inc");
+require_once("../../../include/autoload.inc");
 restore_error_handler();
 try {
 
        /* Get new test instance of the Configuration */
        $cr= Registry::getInstance("ConfigManager");
-       $cr->load("../../gosa.conf");
+       $cr->load("../../../gosa.conf");
 
        /* Get a new test instance of ObjectListViewports */
        $vp= new ObjectListViewport("plugin/sample");