2011-03-18 08:30:34 +01:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2012-12-28 22:51:50 +01:00
|
|
|
require_once('include/acl_selectors.php');
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function editpost_content(App $a) {
|
2011-03-18 08:30:34 +01:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2011-03-18 08:30:34 +01:00
|
|
|
notice( t('Permission denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$post_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! $post_id) {
|
2011-03-18 08:30:34 +01:00
|
|
|
notice( t('Item not found') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-20 07:37:17 +02:00
|
|
|
$itm = q("SELECT * FROM `item` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2011-03-18 08:30:34 +01:00
|
|
|
intval($post_id),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
|
2016-12-20 15:37:27 +01:00
|
|
|
if (! dbm::is_result($itm)) {
|
2011-03-18 08:30:34 +01:00
|
|
|
notice( t('Item not found') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-05-30 02:21:30 +02:00
|
|
|
$o .= replace_macros(get_markup_template("section_title.tpl"),array(
|
|
|
|
'$title' => t('Edit post')
|
|
|
|
));
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('jot-header.tpl');
|
2011-03-18 08:30:34 +01:00
|
|
|
$a->page['htmlhead'] .= replace_macros($tpl, array(
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2011-05-20 10:15:02 +02:00
|
|
|
'$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$geotag' => $geotag,
|
|
|
|
'$nickname' => $a->user['nickname']
|
|
|
|
));
|
|
|
|
|
2012-07-28 17:57:16 +02:00
|
|
|
$tpl = get_markup_template('jot-end.tpl');
|
|
|
|
$a->page['end'] .= replace_macros($tpl, array(
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2012-07-28 17:57:16 +02:00
|
|
|
'$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'),
|
|
|
|
'$geotag' => $geotag,
|
|
|
|
'$nickname' => $a->user['nickname']
|
|
|
|
));
|
|
|
|
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template("jot.tpl");
|
2015-12-04 19:29:13 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
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'])))))
|
2011-03-18 08:30:34 +01:00
|
|
|
$lockstate = 'lock';
|
|
|
|
else
|
|
|
|
$lockstate = 'unlock';
|
|
|
|
|
|
|
|
$jotplugins = '';
|
|
|
|
$jotnets = '';
|
2011-04-18 08:27:11 +02:00
|
|
|
|
2011-04-19 05:20:04 +02:00
|
|
|
$mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
|
|
|
|
|
2011-04-18 08:27:11 +02:00
|
|
|
$mail_enabled = false;
|
|
|
|
$pubmail_enabled = false;
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! $mail_disabled) {
|
2011-04-19 05:20:04 +02:00
|
|
|
$r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
|
|
|
|
intval(local_user())
|
|
|
|
);
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2011-04-19 05:20:04 +02:00
|
|
|
$mail_enabled = true;
|
2017-03-21 17:02:59 +01:00
|
|
|
if(intval($r[0]['pubmail']))
|
2011-04-19 05:20:04 +02:00
|
|
|
$pubmail_enabled = true;
|
|
|
|
}
|
2011-04-18 08:27:11 +02:00
|
|
|
}
|
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
// I don't think there's any need for the $jotnets when editing the post,
|
|
|
|
// and including them makes it difficult for the JS-free theme, so let's
|
|
|
|
// disable them
|
2017-03-21 17:02:59 +01:00
|
|
|
/* if($mail_enabled) {
|
2011-04-18 08:27:11 +02:00
|
|
|
$selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
|
2011-09-23 12:12:31 +02:00
|
|
|
$jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> '
|
2011-04-18 08:27:11 +02:00
|
|
|
. t("Post to Email") . '</div>';
|
2013-01-26 20:52:21 +01:00
|
|
|
}*/
|
2015-06-03 20:57:30 +02:00
|
|
|
|
2011-04-18 08:27:11 +02:00
|
|
|
|
|
|
|
|
2011-03-18 08:30:34 +01:00
|
|
|
call_hooks('jot_tool', $jotplugins);
|
2013-01-26 20:52:21 +01:00
|
|
|
//call_hooks('jot_networks', $jotnets);
|
2011-03-18 08:30:34 +01:00
|
|
|
|
2015-12-04 19:29:13 +01:00
|
|
|
|
2015-06-03 20:57:30 +02:00
|
|
|
//$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));
|
|
|
|
|
2011-03-18 08:30:34 +01:00
|
|
|
$o .= replace_macros($tpl,array(
|
2015-12-04 19:29:13 +01:00
|
|
|
'$is_edit' => true,
|
2011-03-18 08:30:34 +01:00
|
|
|
'$return_path' => $_SESSION['return_url'],
|
|
|
|
'$action' => 'item',
|
2014-09-06 12:49:34 +02:00
|
|
|
'$share' => t('Save'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$upload' => t('Upload photo'),
|
2012-10-01 16:00:25 +02:00
|
|
|
'$shortupload' => t('upload photo'),
|
2011-05-25 11:08:15 +02:00
|
|
|
'$attach' => t('Attach file'),
|
2012-10-01 16:00:25 +02:00
|
|
|
'$shortattach' => t('attach file'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$weblink' => t('Insert web link'),
|
2012-10-01 16:00:25 +02:00
|
|
|
'$shortweblink' => t('web link'),
|
|
|
|
'$video' => t('Insert video link'),
|
|
|
|
'$shortvideo' => t('video link'),
|
|
|
|
'$audio' => t('Insert audio link'),
|
|
|
|
'$shortaudio' => t('audio link'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$setloc' => t('Set your location'),
|
2012-10-01 16:00:25 +02:00
|
|
|
'$shortsetloc' => t('set location'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$noloc' => t('Clear browser location'),
|
2012-10-01 16:00:25 +02:00
|
|
|
'$shortnoloc' => t('clear location'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$wait' => t('Please wait'),
|
|
|
|
'$permset' => t('Permission settings'),
|
2011-05-20 10:15:02 +02:00
|
|
|
'$ptyp' => $itm[0]['type'],
|
2012-03-23 00:17:10 +01:00
|
|
|
'$content' => undo_post_tagging($itm[0]['body']),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$post_id' => $post_id,
|
2017-08-26 09:32:10 +02:00
|
|
|
'$baseurl' => System::baseUrl(),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$defloc' => $a->user['default-location'],
|
|
|
|
'$visitor' => 'none',
|
2011-05-20 10:15:02 +02:00
|
|
|
'$pvisit' => 'none',
|
2011-03-18 08:30:34 +01:00
|
|
|
'$emailcc' => t('CC: email addresses'),
|
2011-05-19 02:29:12 +02:00
|
|
|
'$public' => t('Public post'),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$jotnets' => $jotnets,
|
2013-05-19 01:02:31 +02:00
|
|
|
'$title' => htmlspecialchars($itm[0]['title']),
|
2012-02-10 00:58:26 +01:00
|
|
|
'$placeholdertitle' => t('Set title'),
|
2012-08-04 22:01:16 +02:00
|
|
|
'$category' => file_tag_file_to_list($itm[0]['file'], 'category'),
|
2012-11-22 17:14:22 +01:00
|
|
|
'$placeholdercategory' => (feature_enabled(local_user(),'categories') ? t('Categories (comma-separated list)') : ''),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$emtitle' => t('Example: bob@example.com, mary@example.com'),
|
|
|
|
'$lockstate' => $lockstate,
|
2015-06-26 15:13:52 +02:00
|
|
|
'$acl' => '', // populate_acl((($group) ? $group_acl : $a->user)),
|
2011-03-18 08:30:34 +01:00
|
|
|
'$bang' => (($group) ? '!' : ''),
|
2011-07-20 11:08:42 +02:00
|
|
|
'$profile_uid' => $_SESSION['uid'],
|
2012-02-10 00:58:26 +01:00
|
|
|
'$preview' => t('Preview'),
|
2011-07-20 11:08:42 +02:00
|
|
|
'$jotplugins' => $jotplugins,
|
2012-08-04 22:01:16 +02:00
|
|
|
'$sourceapp' => t($a->sourcename),
|
2012-11-02 00:14:42 +01:00
|
|
|
'$cancel' => t('Cancel'),
|
2016-06-25 12:21:13 +02:00
|
|
|
'$rand_num' => random_digits(12),
|
|
|
|
|
|
|
|
//jot nav tab (used in some themes)
|
|
|
|
'$message' => t('Message'),
|
|
|
|
'$browser' => t('Browser'),
|
|
|
|
'$shortpermset' => t('permissions'),
|
2011-03-18 08:30:34 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
return $o;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-03-18 08:30:34 +01:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|
|
|
|
|