7 use Friendica\Content\Nav;
8 use Friendica\Core\L10n;
9 use Friendica\Database\DBA;
10 use Friendica\Model\Item;
11 use Friendica\Model\Profile;
13 function notes_init(App $a)
21 $which = $a->user['nickname'];
23 Nav::setSelected('home');
25 //Profile::load($a, $which, $profile);
29 function notes_content(App $a, $update = false)
32 notice(L10n::t('Permission denied.') . EOL);
36 require_once 'include/security.php';
37 require_once 'include/conversation.php';
39 $o = Profile::getTabs($a, true);
42 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
46 'allow_location' => (($a->user['allow_location']) ? true : false),
47 'default_location' => $a->user['default-location'],
48 'nickname' => $a->user['nickname'],
49 'lockstate' => 'lock',
53 'profile_uid' => local_user(),
54 'button' => L10n::t('Save'),
58 $o .= status_editor($a, $x, $a->contact['id']);
61 $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
62 'wall' => false, 'contact-id'=> $a->contact['id']];
64 $a->set_pager_itemspage(40);
66 $params = ['order' => ['created' => true],
67 'limit' => [$a->pager['start'], $a->pager['itemspage']]];
68 $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
72 if (DBA::isResult($r)) {
73 $notes = DBA::toArray($r);
75 $count = count($notes);
77 $o .= conversation($a, $notes, 'notes', $update);
80 $o .= alt_pager($a, $count);