Jeste lepsi vychytafka trasovani templat :-)
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / resource.kyberia.php
index c25e0f6f7844e2a16691f415d152a9db38e602ba..bf22a85a48800606a75f7edc5c95d6662819750c 100644 (file)
@@ -17,7 +17,10 @@ function db_get_template ($tpl_name, &$tpl_source, &$smarty_obj) {
       if (is_numeric($template_id)) {
        $tpl_source = nodes::getNodeById($template_id,empty($_SESSION['user_id']) ? "" : $_SESSION['user_id']);
       }
-     $tpl_source = $tpl_source['node_content'];      
+       $template_name = $tpl_source['node_name'];
+       $tpl_source = "\n\n<!-- BEGIN TEMPLATE $template_id [$template_name]  -->\n\n".
+               $tpl_source['node_content'].
+               "\n\n<!-- END TEMPLATE $template_id [$template_name]  -->\n\n";
 
     // return true on success, false to generate failure notification
      return (bool)$tpl_source;
@@ -29,7 +32,7 @@ function db_get_timestamp($tpl_name, &$tpl_timestamp, &$smarty_obj)
     // do database call here to populate $tpl_timestamp
     // with unix epoch time value of last template modification.
     // This is used to determine if recompile is necessary.
-       $recompile = 100; //recompile every N seconds
+       $recompile = 10; //recompile every N seconds
        $tpl_timestamp = floor(time()/$recompile)*$recompile; 
        // this example will recompile even unchanged templates! XXX!!! FIXME!!! TODO!!!
     // return true on success, false to generate failure notification
This page took 0.100058 seconds and 4 git commands to generate.