Merge pull request #5719 from annando/notices-yeah
[friendica.git/.git] / mod / notes.php
1 <?php
2 /**
3  * @file mod/notes.php
4  */
5
6 use Friendica\App;
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;
12
13 function notes_init(App $a)
14 {
15         if (! local_user()) {
16                 return;
17         }
18
19         $profile = 0;
20
21         $which = $a->user['nickname'];
22
23         Nav::setSelected('home');
24
25         //Profile::load($a, $which, $profile);
26 }
27
28
29 function notes_content(App $a, $update = false)
30 {
31         if (!local_user()) {
32                 notice(L10n::t('Permission denied.') . EOL);
33                 return;
34         }
35
36         require_once 'include/security.php';
37         require_once 'include/conversation.php';
38
39         $o = Profile::getTabs($a, true);
40
41         if (!$update) {
42                 $o .= '<h3>' . L10n::t('Personal Notes') . '</h3>';
43
44                 $x = [
45                         'is_owner' => true,
46                         'allow_location' => (($a->user['allow_location']) ? true : false),
47                         'default_location' => $a->user['default-location'],
48                         'nickname' => $a->user['nickname'],
49                         'lockstate' => 'lock',
50                         'acl' => '',
51                         'bang' => '',
52                         'visitor' => 'block',
53                         'profile_uid' => local_user(),
54                         'button' => L10n::t('Save'),
55                         'acl_data' => '',
56                 ];
57
58                 $o .= status_editor($a, $x, $a->contact['id']);
59         }
60
61         $condition = ['uid' => local_user(), 'post-type' => Item::PT_PERSONAL_NOTE, 'gravity' => GRAVITY_PARENT,
62                 'wall' => false, 'contact-id'=> $a->contact['id']];
63
64         $a->set_pager_itemspage(40);
65
66         $params = ['order' => ['created' => true],
67                 'limit' => [$a->pager['start'], $a->pager['itemspage']]];
68         $r = Item::selectThreadForUser(local_user(), ['uri'], $condition, $params);
69
70         $count = 0;
71
72         if (DBA::isResult($r)) {
73                 $count = count($r);
74                 $o .= conversation($a, DBA::toArray($r), 'notes', $update);
75         }
76
77         $o .= alt_pager($a, $count);
78
79         return $o;
80 }