Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / smarty / node_methodz / function.get_creation_by_k.php
diff --git a/inc/smarty/node_methodz/function.get_creation_by_k.php b/inc/smarty/node_methodz/function.get_creation_by_k.php
new file mode 100644 (file)
index 0000000..2a1e16a
--- /dev/null
@@ -0,0 +1,23 @@
+<?php
+function smarty_function_get_creation_by_k($params,&$smarty) {
+       global $db,$node;
+
+       if ($params['orderby'] == 'asc') $orderby = 'asc';
+       else $orderby = 'desc';
+
+       if ($params['listing_amount'] == 'all') $listing_amount = '232323';
+       elseif (is_numeric($params['listing_amount'])) $listing_amount = $params['listing_amount'];
+       else $listing_amount = DEFAULT_LISTING_AMOUNT;
+
+       if (is_numeric($params['offset'])) $offset = $params['offset'];
+       elseif (is_numeric($_POST['offset'])) $offset = $_POST['offset'];
+       else $offset = 0;
+
+       $q = "select users.*,nodes.* from nodes left join users on users.user_id=nodes.node_creator where node_creator = ".$node['node_id']." and k > 0 order by k $orderby LIMIT $offset,$listing_amount";
+       $set = $db->query($q);
+
+       while ($set->next()) $array[] = $set->getRecord();
+
+       $smarty->assign('get_creation_by_k',$array);
+}
+?>
\ No newline at end of file
This page took 0.135613 seconds and 4 git commands to generate.