6 use Friendica\Content\Nav;
7 use Friendica\Core\L10n;
8 use Friendica\Database\DBM;
9 use Friendica\Model\Profile;
11 function notes_init(App $a)
19 $which = $a->user['nickname'];
21 Nav::setSelected('home');
23 //Profile::load($a, $which, $profile);
27 function notes_content(App $a, $update = false)
30 notice(L10n::t('Permission denied.') . EOL);
34 require_once 'include/security.php';
35 require_once 'include/conversation.php';
41 $remote_contact = false;
43 $contact_id = $_SESSION['cid'];
44 $contact = $a->contact;
49 $o .= Profile::getTabs($a, true);
52 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
58 'is_owner' => $is_owner,
59 'allow_location' => (($a->user['allow_location']) ? true : false),
60 'default_location' => $a->user['default-location'],
61 'nickname' => $a->user['nickname'],
62 'lockstate' => 'lock',
66 'profile_uid' => local_user(),
67 'button' => L10n::t('Save'),
71 $o .= status_editor($a, $x, $a->contact['id']);
74 // Construct permissions
76 // default permissions - anonymous user
78 $sql_extra = " AND `item`.`allow_cid` = '<" . $a->contact['id'] . ">' ";
80 $r = q("SELECT COUNT(*) AS `total`
82 WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
83 AND `contact`.`self` AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
90 if (DBM::is_result($r)) {
91 $a->set_pager_total($r[0]['total']);
92 $a->set_pager_itemspage(40);
95 $r = q("SELECT `item`.`id` AS `item_id` FROM `item` %s
96 WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
97 AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
99 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
102 intval(local_user()),
103 intval($a->pager['start']),
104 intval($a->pager['itemspage'])
111 if (DBM::is_result($r)) {
112 foreach ($r as $rr) {
113 $parents_arr[] = $rr['item_id'];
115 $parents_str = implode(', ', $parents_arr);
117 $r = q("SELECT %s FROM `item` %s
118 WHERE %s AND `item`.`uid` = %d AND `item`.`parent` IN (%s)
120 ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
124 intval(local_user()),
128 if (DBM::is_result($r)) {
129 $items = conv_sort($r, "`commented`");
131 $o .= conversation($a, $items, 'notes', $update);