aboutsummaryrefslogtreecommitdiffstats
path: root/mod/blocks.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-04-23 21:04:01 +0200
committerMario Vavti <mario@mariovavti.com>2015-04-23 21:04:01 +0200
commitc696860cc53bc25558d83de5eda65d9b583da382 (patch)
tree01f5c0333577e212eaf3d88e9e7640bab7e0743c /mod/blocks.php
parent4759fa662b38253a01fa27b57ac336cbfb12aa47 (diff)
downloadvolse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.tar.gz
volse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.tar.bz2
volse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.zip
webpages blocks fixes
Diffstat (limited to 'mod/blocks.php')
-rw-r--r--mod/blocks.php28
1 files changed, 23 insertions, 5 deletions
diff --git a/mod/blocks.php b/mod/blocks.php
index b74b034e5..f609164e0 100644
--- a/mod/blocks.php
+++ b/mod/blocks.php
@@ -70,7 +70,6 @@ function blocks_content(&$a) {
return;
}
-
// Block design features from visitors
if((! $uid) || ($uid != $owner)) {
@@ -105,11 +104,10 @@ function blocks_content(&$a) {
if($_REQUEST['pagetitle'])
$x['pagetitle'] = $_REQUEST['pagetitle'];
-
-
$editor = status_editor($a,$x);
- $r = q("select * from item_id where uid = %d and service = 'BUILDBLOCK' order by sid asc",
+ $r = q("select * from item_id left join item on item_id.iid = item.id
+ where item_id.uid = %d and service = 'BUILDBLOCK' order by item.created desc",
intval($owner)
);
@@ -118,7 +116,22 @@ function blocks_content(&$a) {
if($r) {
$pages = array();
foreach($r as $rr) {
- $pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid']);
+ $element_arr = array(
+ 'type' => 'block',
+ 'body' => $rr['body'],
+ 'created' => $rr['created'],
+ 'edited' => $rr['edited'],
+ 'mimetype' => $rr['mimetype'],
+ 'pagetitle' => $rr['sid'],
+ 'mid' => $rr['mid']
+ );
+ $pages[$rr['iid']][] = array(
+ 'url' => $rr['iid'],
+ 'title' => $rr['sid'],
+ 'created' => $rr['created'],
+ 'edited' => $rr['edited'],
+ 'bb_element' => '[element]' . base64url_encode(json_encode($element_arr)) . '[/element]'
+ );
}
}
@@ -128,8 +141,13 @@ function blocks_content(&$a) {
$o .= replace_macros(get_markup_template('blocklist.tpl'), array(
'$baseurl' => $url,
'$title' => t('Blocks'),
+ '$name' => t('Block Name'),
+ '$created' => t('Created'),
+ '$edited' => t('Edited'),
'$create' => t('Create'),
'$edit' => t('Edit'),
+ '$share' => t('Share'),
+ '$delete' => t('Delete'),
'$editor' => $editor,
'$pages' => $pages,
'$channel' => $which,