3 function notes_init(&$a) {
10 $which = $a->user['nickname'];
12 // profile_load($a,$which,$profile);
17 function notes_content(&$a,$update = false) {
20 notice( t('Permission denied.') . EOL);
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');
33 $remote_contact = false;
35 $contact_id = $_SESSION['cid'];
36 $contact = $a->contact;
41 $o .= profile_tabs($a,True);
44 $o .= '<h3>' . t('Personal Notes') . '</h3>';
54 'is_owner' => $is_owner,
55 'allow_location' => (($a->user['allow_location']) ? true : false),
56 'default_location' => $a->user['default-location'],
57 'nickname' => $a->user['nickname'],
58 'lockstate' => 'lock',
62 'profile_uid' => local_user(),
63 'button' => t('Save'),
67 $o .= status_editor($a,$x,$a->contact['id']);
71 // Construct permissions
73 // default permissions - anonymous user
75 $sql_extra = " AND `allow_cid` = '<" . $a->contact['id'] . ">' ";
77 $r = q("SELECT COUNT(*) AS `total`
78 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
79 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0
80 AND `item`.`deleted` = 0 AND `item`.`type` = 'note'
81 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `contact`.`self` = 1
82 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
89 $a->set_pager_total($r[0]['total']);
90 $a->set_pager_itemspage(40);
93 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact-uid`
94 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
95 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
96 and `item`.`moderated` = 0 AND `item`.`type` = 'note'
97 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `contact`.`self` = 1
98 AND `item`.`id` = `item`.`parent` AND `item`.`wall` = 0
100 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
101 intval(local_user()),
102 intval($a->pager['start']),
103 intval($a->pager['itemspage'])
107 $parents_arr = array();
112 $parents_arr[] = $rr['item_id'];
113 $parents_str = implode(', ', $parents_arr);
115 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
116 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`network`, `contact`.`rel`,
117 `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
118 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
119 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
120 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 and `item`.`moderated` = 0 AND `item`.`deleted` = 0
121 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
122 AND `item`.`parent` IN ( %s )
124 ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
125 intval(local_user()),
130 $items = conv_sort($r,"`commented`");
132 $o .= conversation($a,$items,'notes',$update);