aboutsummaryrefslogtreecommitdiffstats
path: root/mod/editlayout.php
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-24 15:01:59 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-24 15:01:59 -0700
commite01873b4cf3c217f7ee0baafbee1ba9dd42e0408 (patch)
tree21aacbacaf2b3d41a0fb06ce725444b49cdd8fad /mod/editlayout.php
parent268307b5346674159ef8f6d3fbfadaf41a7443f0 (diff)
parentfcaa980a3f8c0c8a98ba6912826b694371cdd26a (diff)
downloadvolse-hubzilla-e01873b4cf3c217f7ee0baafbee1ba9dd42e0408.tar.gz
volse-hubzilla-e01873b4cf3c217f7ee0baafbee1ba9dd42e0408.tar.bz2
volse-hubzilla-e01873b4cf3c217f7ee0baafbee1ba9dd42e0408.zip
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'mod/editlayout.php')
-rw-r--r--mod/editlayout.php27
1 files changed, 3 insertions, 24 deletions
diff --git a/mod/editlayout.php b/mod/editlayout.php
index 437c164c1..5c9b62cbb 100644
--- a/mod/editlayout.php
+++ b/mod/editlayout.php
@@ -23,7 +23,6 @@ function editlayout_init(&$a) {
function editlayout_content(&$a) {
-
if(! $a->profile) {
notice( t('Requested profile is not available.') . EOL );
$a->error = 404;
@@ -69,7 +68,6 @@ function editlayout_content(&$a) {
$o = '';
-
// Figure out which post we're editing
$post_id = ((argc() > 2) ? intval(argv(2)) : 0);
@@ -105,7 +103,9 @@ function editlayout_content(&$a) {
$plaintext = true;
$o .= replace_macros(get_markup_template('edpost_head.tpl'), array(
- '$title' => t('Edit Layout')
+ '$title' => t('Edit Layout'),
+ '$delete' => ((($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash)) ? t('Delete') : false),
+ '$id' => $itm[0]['id']
));
$a->page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array(
@@ -176,27 +176,6 @@ function editlayout_content(&$a) {
'$feature_expire' => false,
'$expires' => t('Set expiration date'),
));
-
-
- if(($itm[0]['author_xchan'] === $ob_hash) || ($itm[0]['owner_xchan'] === $ob_hash))
- $o .= '<br /><br /><a class="layout-delete-link" href="item/drop/' . $itm[0]['id'] . '" >' . t('Delete Layout') . '</a><br />';
-
-
- $x = array(
- 'type' => 'layout',
- 'title' => $itm[0]['title'],
- 'body' => $itm[0]['body'],
- 'term' => $itm[0]['term'],
- 'created' => $itm[0]['created'],
- 'edited' => $itm[0]['edited'],
- 'mimetype' => $itm[0]['mimetype'],
- 'pagetitle' => $page_title,
- 'mid' => $itm[0]['mid']
- );
-
- $o .= EOL . EOL . t('Share') . EOL . '<textarea onclick="this.select();" class="shareable_element_text" >[element]' . base64url_encode(json_encode($x)) . '[/element]</textarea>' . EOL . EOL;
-
-
return $o;