Kyberia v2.3 - 1st revision from SVN (Without patches of kyberia.sk team)
[mirrors/Kyberia-bloodline.git] / inc / smarty / node_methodz / function.get_mail.php
CommitLineData
e586807d 1<?
b42b2bf9
H
2function smarty_function_get_mail($params, &$smarty) {
3 global $db, $node;
4
5 $user_id=$_SESSION['user_id'];
6
7 if (is_numeric($params['listing_amount'])) $listing_amount=$params['listing_amount'];
8 else $listing_amount=23;
9
10/* zapnut, ked bezime len na jednej masine.. (br)
11 if ($listing_amount > 100)
12 $listing_amount = 100;
13*/
14
15 if (is_numeric($params['offset'])) $offset=$params['offset'];
16 else $offset=0;
17
18 if (!empty($params['search'])) {
19 if ($params['search_type']=='mail_text') {
20 $sql_type.=" and mail_text like '%".addslashes($params['search'])."%' ";
21 }
22 elseif ($params['search_type']=='mail_both') {
23 $userset=$db->query("select user_id from users where login='".addslashes($params['search'])."'");
24 $userset->next();
25 $id=$userset->getString('user_id');
26 $sql_type=" and (mail_to='$id' or mail_from='$id')";
e586807d 27 }
b42b2bf9
H
28 else {
29 $userset=$db->query("select user_id from users where login='".addslashes($params['search'])."'");
30 $userset->next();
31 $id=$userset->getString('user_id');
32 $sql_type=" and ".$params['search_type']."='$id'";
33 }
34 }
e586807d 35
b42b2bf9 36 $query = "select date_format(mail.mail_timestamp,\"%e.%c. %k:%i:%s\") as cas,
e586807d
H
37userfrom.user_action as locationfrom_action,
38userfrom.user_action_id as locationfrom_action_id,
39userto.user_action as locationto_action,
40userto.user_action_id as locationto_action_id,
41userto.login as mail_to_name, userfrom.login as mail_from_name,
42mail.* from mail left join users as userfrom on
43mail_from=userfrom.user_id left join users as userto on mail_to=userto.user_id
44where mail_user='$user_id' ";
b42b2bf9
H
45 if ($sql_type) $query.=$sql_type;
46 $query.=" order by mail_id desc limit $offset,$listing_amount";
e586807d 47
b42b2bf9 48 $set = $db->query($query);
e586807d 49
b42b2bf9
H
50 while($set->next()) {
51 $get_mail[] = $set->getRecord();
e586807d 52 }
b42b2bf9
H
53 $smarty->assign('get_mail', $get_mail);
54}
e586807d 55?>
This page took 0.149984 seconds and 4 git commands to generate.