75726787151f69654c96f906967b9421f16e7a69
3 function smarty_function_get_children($params,&$smarty) {
7 $node_id=$node['node_id'];
9 $listing_amount=$params['listing_amount'];
10 if (!is_numeric($listing_amount)) {
13 $offset=$params['offset'];
14 if (!is_numeric($offset)) {
18 if ($_POST['get_children_orderby']=="asc" ||
$params['orderby']=='asc') $orderby='asc';
21 $q="select node_access.last_visit,creator.node_name as creator,users.*,nodes.*,nodes.node_id as node_id from nodes
22 left join node_access on (nodes.node_id=node_access.node_id
23 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'";
25 if (!empty($params['search'])) {
26 if ($params['search_type']=='content') $sql_type.=" and node_content like '%".addslashes($params['sea
29 $id=nodes
::getNodeByLogin($params['search']);
30 $sql_type=" and nodes.node_creator='$id'";
34 if ($children_type=='4' ||
$params['orderby_type']=='time') $q.=" order by nodes.node_created $orderby limit $offset,$listing_amount";
35 else $q.=" order by nodes.template_id,nodes.node_name LIMIT $offset,$listing_amount";
38 while ($set->next()) {
39 $get_children_array[]=$set->getRecord();
42 $smarty->assign('get_children',$get_children_array);
This page took 1.000197 seconds and 3 git commands to generate.