]> git.mxchange.org Git - friendica.git/blob - mod/editpost.php
template for photo display
[friendica.git] / mod / editpost.php
1 <?php
2
3 require_once('acl_selectors.php');
4
5 function editpost_content(&$a) {
6
7         $o = '';
8
9         if(! local_user()) {
10                 notice( t('Permission denied.') . EOL);
11                 return;
12         }
13
14         $post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
15
16         if(! $post_id) {
17                 notice( t('Item not found') . EOL);
18                 return;
19         }
20
21         $itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
22                 intval($post_id),
23                 intval(local_user())
24         );
25
26         if(! count($itm)) {
27                 notice( t('Item not found') . EOL);
28                 return;
29         }
30
31
32         $o .= '<h2>' . t('Edit post') . '</h2>';
33
34         $tpl = load_view_file('view/jot-header.tpl');
35         
36         $a->page['htmlhead'] .= replace_macros($tpl, array(
37                 '$baseurl' => $a->get_baseurl(),
38                 '$geotag' => $geotag,
39                 '$nickname' => $a->user['nickname']
40         ));
41
42
43         $tpl = load_view_file("view/jot.tpl");
44                 
45         if(($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid'])))))
46                 $lockstate = 'lock';
47         else
48                 $lockstate = 'unlock';
49
50         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
51
52         $jotplugins = '';
53         $jotnets = '';
54
55         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
56
57         $mail_enabled = false;
58         $pubmail_enabled = false;
59
60         if(! $mail_disabled) {
61                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
62                         intval(local_user())
63                 );
64                 if(count($r)) {
65                         $mail_enabled = true;
66                         if(intval($r[0]['pubmail']))
67                                 $pubmail_enabled = true;
68                 }
69         }
70
71         if($mail_enabled) {
72        $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
73                 $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . 'value="1" /> '
74                 . t("Post to Email") . '</div>';
75         }
76                                         
77
78
79         call_hooks('jot_tool', $jotplugins);
80         call_hooks('jot_networks', $jotnets);
81
82         $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
83
84         $o .= replace_macros($tpl,array(
85                 '$return_path' => $_SESSION['return_url'],
86                 '$action' => 'item',
87                 '$share' => t('Edit'),
88                 '$upload' => t('Upload photo'),
89                 '$weblink' => t('Insert web link'),
90                 '$youtube' => t('Insert YouTube video'),
91                 '$video' => t('Insert Vorbis [.ogg] video'),
92                 '$audio' => t('Insert Vorbis [.ogg] audio'),
93                 '$setloc' => t('Set your location'),
94                 '$noloc' => t('Clear browser location'),
95                 '$wait' => t('Please wait'),
96                 '$permset' => t('Permission settings'),
97                 '$content' => $itm[0]['body'],
98                 '$post_id' => $post_id,
99                 '$baseurl' => $a->get_baseurl(),
100                 '$defloc' => $a->user['default-location'],
101                 '$visitor' => 'none',
102                 '$emailcc' => t('CC: email addresses'),
103                 '$jotnets' => $jotnets,
104                 '$emtitle' => t('Example: bob@example.com, mary@example.com'),
105                 '$lockstate' => $lockstate,
106                 '$acl' => '', // populate_acl((($group) ? $group_acl : $a->user), $celeb),
107                 '$bang' => (($group) ? '!' : ''),
108                 '$profile_uid' => $_SESSION['uid']
109         ));
110
111
112         return $o;
113
114 }
115
116