7 use Friendica\Content\Nav;
8 use Friendica\Content\Pager;
9 use Friendica\Core\L10n;
10 use Friendica\Database\DBA;
11 use Friendica\Model\Item;
12 use Friendica\Model\Profile;
14 function notes_init(App $a)
22 $which = $a->user['nickname'];
24 Nav::setSelected('home');
26 //Profile::load($a, $which, $profile);
30 function notes_content(App $a, $update = false)
33 notice(L10n::t('Permission denied.') . EOL);
37 $o = Profile::getTabs($a, true);
40 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
44 'allow_location' => (($a->user['allow_location']) ? true : false),
45 'default_location' => $a->user['default-location'],
46 'nickname' => $a->user['nickname'],
47 'lockstate' => 'lock',
51 'profile_uid' => local_user(),
52 'button' => L10n::t('Save'),
56 $o .= status_editor($a, $x, $a->contact['id']);
59 $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
60 'contact-id'=> $a->contact['id']];
62 $pager = new Pager($a->query_string, 40);
64 $params = ['order' => ['created' => true],
65 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
66 $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
70 if (DBA::isResult($r)) {
71 $notes = Item::inArray($r);
73 $count = count($notes);
75 $o .= conversation($a, $notes, $pager, 'notes', $update);
78 $o .= $pager->renderMinimal($count);