]> git.mxchange.org Git - friendica.git/blob - mod/notes.php
Change logic in admin.php to load plugin settings form. Add statusnet settings form.
[friendica.git] / mod / notes.php
1 <?php
2
3 function notes_init(&$a) {
4
5         if(! local_user())
6                 return;
7
8         $profile = 0;
9
10         $which = $a->user['nickname'];
11
12 //      profile_load($a,$which,$profile);
13
14 }
15
16
17 function notes_content(&$a) {
18
19         if(! local_user()) {
20                 notice( t('Permission denied.') . EOL);
21                 return;
22         }
23
24         require_once("include/bbcode.php");
25         require_once('include/security.php');
26         require_once('include/conversation.php');
27         require_once('include/acl_selectors.php');
28         $groups = array();
29
30
31         $o = '';
32
33         $remote_contact = false;
34
35         $contact_id = $_SESSION['cid'];
36         $contact = $a->contact;
37
38         $is_owner = true;
39         
40
41         $o .= '<h3>' . t('Personal Notes') . '</h3>';
42
43         $commpage = false;
44         $commvisitor = false;
45
46         $celeb = false;
47
48
49
50         $x = array(
51                 'is_owner' => $is_owner,
52         'allow_location' => (($a->user['allow_location']) ? true : false),
53         'default_location' => $a->user['default-location'],
54         'nickname' => $a->user['nickname'],
55             'lockstate' => 'lock',
56         'acl' => '',
57         'bang' => '',
58         'visitor' => 'block',
59             'profile_uid' => local_user(),
60                 'button' => t('Save')
61
62     );
63
64     $o .= status_editor($a,$x,$a->contact['id']);
65
66
67         // Construct permissions
68
69         // default permissions - anonymous user
70         
71         $sql_extra = " AND `allow_cid` = '<" . $a->contact['id'] . ">' ";
72
73         $r = q("SELECT COUNT(*) AS `total`
74                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
75                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
76                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 
77                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
78                 $sql_extra ",
79                 intval(local_user())
80
81         );
82
83         if(count($r)) {
84                 $a->set_pager_total($r[0]['total']);
85                 $a->set_pager_itemspage(40);
86         }
87
88         $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
89                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
90                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
91                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
92                 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
93                 $sql_extra
94                 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
95                 intval(local_user()),
96                 intval($a->pager['start']),
97                 intval($a->pager['itemspage'])
98
99         );
100
101         $parents_arr = array();
102         $parents_str = '';
103
104         if(count($r)) {
105                 foreach($r as $rr)
106                         $parents_arr[] = $rr['item_id'];
107                 $parents_str = implode(', ', $parents_arr);
108  
109                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
110                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`network`, `contact`.`rel`, 
111                         `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
112                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
113                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
114                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
115                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
116                         AND `item`.`parent` IN ( %s )
117                         $sql_extra
118                         ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
119                         intval(local_user()),
120                         dbesc($parents_str)
121                 );
122         }
123
124         $o .= conversation($a,$r,'notes',$update);
125
126
127         $o .= paginate($a);
128         return $o;
129 }