get_k_neurons added (not working so far)
authorniekt0 <niekt0@kyberia.cz>
Fri, 4 Mar 2011 23:37:30 +0000 (00:37 +0100)
committerniekt0 <niekt0@kyberia.cz>
Fri, 4 Mar 2011 23:37:30 +0000 (00:37 +0100)
wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php [new file with mode: 0644]

diff --git a/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php b/wwwroot/inc/smarty/node_methodz/function.get_k_neurons.php
new file mode 100644 (file)
index 0000000..b43bf95
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+       function smarty_function_get_k_neurons($params,&$smarty) {
+
+               global $db,$node;
+               if (is_numeric($params['offset'])) $offset=$params['offset'];
+               else $offset=0;
+               if (is_numeric($params['listing_amount'])) $listing_amount=$params['listing_amount'];
+               else $listing_amount=DEFAULT_LISTING_AMOUNT;
+               if (!is_numeric($_POST['interval'])) $interval=1;
+               else $interval = $_POST['interval'];
+               if ($params['vector']) {
+                       $vector=$params['vector'];
+                       $interval=365;
+               }
+               else $vector="00";
+
+// XXX backend
+
+$q="select nodes.*,parent.node_name as parent_name,users.login as creator
+ from nodes left join nodes as parent on nodes.node_parent=parent.node_id
+ left join users on users.user_id=nodes.node_creator where nodes.node_created>now()-interval $interval day
+  and nodes.node_vector like '$vector%' and nodes.k>0 and nodes.node_system_access!='private' order by nodes.k desc limit $offset,$listing_amount";
+
+               $set=$db->query($q);
+               while ($set->next()) {
+                       $k_array[]=$set->getRecord();
+               }
+
+               $smarty->assign('get_k',$k_array);
+
+
+
+       }
+?>
This page took 0.100189 seconds and 4 git commands to generate.