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/bbcode.php';
35 require_once 'include/security.php';
36 require_once 'include/conversation.php';
37 require_once 'include/acl_selectors.php';
43 $remote_contact = false;
45 $contact_id = $_SESSION['cid'];
46 $contact = $a->contact;
51 $o .= Profile::getTabs($a, true);
54 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
60 'is_owner' => $is_owner,
61 'allow_location' => (($a->user['allow_location']) ? true : false),
62 'default_location' => $a->user['default-location'],
63 'nickname' => $a->user['nickname'],
64 'lockstate' => 'lock',
68 'profile_uid' => local_user(),
69 'button' => L10n::t('Save'),
73 $o .= status_editor($a, $x, $a->contact['id']);
76 // Construct permissions
78 // default permissions - anonymous user
80 $sql_extra = " AND `item`.`allow_cid` = '<" . $a->contact['id'] . ">' ";
82 $r = q("SELECT COUNT(*) AS `total`
84 WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
85 AND `contact`.`self` AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
92 if (DBM::is_result($r)) {
93 $a->set_pager_total($r[0]['total']);
94 $a->set_pager_itemspage(40);
97 $r = q("SELECT `item`.`id` AS `item_id` FROM `item` %s
98 WHERE %s AND `item`.`uid` = %d AND `item`.`type` = 'note'
99 AND `item`.`id` = `item`.`parent` AND NOT `item`.`wall`
101 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
104 intval(local_user()),
105 intval($a->pager['start']),
106 intval($a->pager['itemspage'])
113 if (DBM::is_result($r)) {
114 foreach ($r as $rr) {
115 $parents_arr[] = $rr['item_id'];
117 $parents_str = implode(', ', $parents_arr);
119 $r = q("SELECT %s FROM `item` %s
120 WHERE %s AND `item`.`uid` = %d AND `item`.`parent` IN (%s)
122 ORDER BY `parent` DESC, `gravity` ASC, `item`.`id` ASC ",
126 intval(local_user()),
130 if (DBM::is_result($r)) {
131 $items = conv_sort($r, "`commented`");
133 $o .= conversation($a, $items, 'notes', $update);