psql db schema test
[mirrors/Kyberia-bloodline.git] / inc / smarty / node_methodz / function.get_children.php
diff --git a/inc/smarty/node_methodz/function.get_children.php b/inc/smarty/node_methodz/function.get_children.php
deleted file mode 100644 (file)
index 7572678..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-        function smarty_function_get_children($params,&$smarty) {
-
-                global $db,$node;
-
-                $node_id=$node['node_id'];
-
-                $listing_amount=$params['listing_amount'];
-                if (!is_numeric($listing_amount)) {
-                        $listing_amount=23;
-                }
-                $offset=$params['offset'];
-                if (!is_numeric($offset)) {
-                        $offset=0;
-                }
-
-                if ($_POST['get_children_orderby']=="asc" || $params['orderby']=='asc') $orderby='asc';
-                else $orderby='desc';
-
-                $q="select node_access.last_visit,creator.node_name as creator,users.*,nodes.*,nodes.node_id as node_id from nodes
-left join node_access on (nodes.node_id=node_access.node_id
-and node_access.user_id='".$_SESSION['user_id']."') left join users on users.user_id=nodes.node_creator left join nodes as creator on nodes.node_creator=creator.node_id where nodes.node_parent='$node_id'";
-
-                if (!empty($params['search'])) {
-                        if ($params['search_type']=='content') $sql_type.=" and node_content like '%".addslashes($params['sea
-rch'])."%' ";
-                        else {
-                                $id=nodes::getNodeByLogin($params['search']);
-                                $sql_type=" and nodes.node_creator='$id'";
-                        }
-                        $q.=$sql_type;
-                }
-                if ($children_type=='4' || $params['orderby_type']=='time') $q.=" order by nodes.node_created $orderby limit $offset,$listing_amount";
-                else $q.=" order by nodes.template_id,nodes.node_name LIMIT $offset,$listing_amount";
-                $set=$db->query($q);
-
-                while ($set->next()) {
-                        $get_children_array[]=$set->getRecord();
-                }
-
-                $smarty->assign('get_children',$get_children_array);
-        }
-?>
This page took 0.126529 seconds and 4 git commands to generate.