Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / smarty / node_methodz / function.get_children.php
1 <?php
2
3 function smarty_function_get_children($params,&$smarty) {
4
5 global $db,$node;
6
7 $node_id=$node['node_id'];
8
9 $listing_amount=$params['listing_amount'];
10 if (!is_numeric($listing_amount)) {
11 $listing_amount=23;
12 }
13 $offset=$params['offset'];
14 if (!is_numeric($offset)) {
15 $offfset=0;
16 }
17
18 if ($_POST['get_children_orderby']=="asc") $orderby='asc';
19 else $orderby='desc';
20
21 $q="select node_access.last_visit,creator.node_name as creator,users.*,nodes.*,
22 node_content.*,nodes.node_id as node_id from nodes
23 left join node_access on (nodes.node_id=node_access.node_id
24 and node_access.user_id='".$_SESSION['user_id']."') left join node_content on (node_content.node_id=nodes.node_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'";
25
26 if (!empty($params['search'])) {
27 if ($params['search_type']=='content') $sql_type.=" and node_content like '%".addslashes($params['search'])."%' ";
28 else {
29 $id=nodes::getNodeByLogin($params['search']);
30 $sql_type=" and nodes.node_creator='$id'";
31 }
32 $q.=$sql_type;
33 }
34 if ($children_type=='4') $q.=" order by nodes.node_created desc limit $offset,$listing_amount";
35 else $q.=" order by nodes.template_id,nodes.node_name LIMIT $offset,$listing_amount";
36 $set=$db->query($q);
37
38 while ($set->next()) {
39 $get_children_array[]=$set->getRecord();
40 }
41
42 $smarty->assign('get_children',$get_children_array);
43 }
44 ?>
This page took 0.286892 seconds and 4 git commands to generate.