Smarty DB resource improved: recompiling templates each 100 seconds instead of everyt...
authorHarvie <tomas@mudrunka.cz>
Sun, 2 Jan 2011 12:56:16 +0000 (13:56 +0100)
committerHarvie <tomas@mudrunka.cz>
Sun, 2 Jan 2011 12:56:16 +0000 (13:56 +0100)
wwwroot/inc/smarty/resource.kyberia.php

index 71670c9d105017986ffd60731be6146e9a3774e0..db739208a7cef9a033df9f9ebab6393682469437 100644 (file)
@@ -18,11 +18,14 @@ function db_get_template ($tpl_name, &$tpl_source, &$smarty_obj) {
         $params['node_content'] = mysql_real_escape_string("addTemplate execute: node <a href='$add_template_id'>$add_template_id</a> by user ".$_SESSION['user_name']);
         nodes::addNode($params);
                                */
-
+                               /*
         if(!($set=$db->query("select node_content from nodes where node_id='$add_template_id'"))) return false;
         $set->next();
+                               */
     // populating $tpl_source with actual template contents
-    $tpl_source = stripslashes($set->getString('node_content'));
+       //$tpl_source = stripslashes($set->getString('node_content'));
+       $tpl_source = nodes::getNodeById($add_template_id,$user_id);
+       $tpl_source = $tpl_source['node_content'];
     // return true on success, false to generate failure notification
     return true;
 }
@@ -33,7 +36,8 @@ 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.
-    $tpl_timestamp = time(); // this example will always recompile! FIXME!!! TODO!!!
+       $recompile = 100; //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
     return true;
 }
This page took 0.203823 seconds and 4 git commands to generate.