diff options
author | friendica <info@friendica.com> | 2014-03-03 20:05:23 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-03 20:05:23 -0800 |
commit | cdd2e9cd953394adfd6331c946466f3165606e29 (patch) | |
tree | 648e3d82189d1a462beee7868d1682594cc0e180 /mod/layouts.php | |
parent | bfd9f5ec87ed0b21e278ea5c94016623c9985850 (diff) | |
download | volse-hubzilla-cdd2e9cd953394adfd6331c946466f3165606e29.tar.gz volse-hubzilla-cdd2e9cd953394adfd6331c946466f3165606e29.tar.bz2 volse-hubzilla-cdd2e9cd953394adfd6331c946466f3165606e29.zip |
layout export to file
Diffstat (limited to 'mod/layouts.php')
-rw-r--r-- | mod/layouts.php | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/mod/layouts.php b/mod/layouts.php index cbbef4fea..0dcaba361 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -40,6 +40,20 @@ function layouts_content(&$a) { return; } + if((argc() > 3) && (argv(2) === 'share') && (argv(3))) { + $r = q("select sid, service, mimetype, title, body from item_id left join item on item.id = item_id.iid where item_id.uid = %d and item.mid = '%s' and service = 'PDL' order by sid asc", + intval($owner), + dbesc(argv(3)) + ); + if($r) { + header('Content-type: application/x-redmatrix-layout'); + header('Content-disposition: attachment; filename="' . $r[0]['sid'] . '.pdl"'); + echo json_encode($r); + killme(); + + } + } + $tabs = array( array( 'label' => t('Layout Help'), @@ -75,7 +89,7 @@ function layouts_content(&$a) { // Get a list of blocks. We can't display all them because endless scroll makes that unusable, so just list titles and an edit link. // TODO - this should be replaced with pagelist_widget - $r = q("select * from item_id where uid = %d and service = 'PDL' order by sid asc", + $r = q("select iid, sid, mid from item_id left join item on item.id = item_id.iid where item_id.uid = %d and service = 'PDL' order by sid asc", intval($owner) ); @@ -84,7 +98,7 @@ function layouts_content(&$a) { if($r) { $pages = array(); foreach($r as $rr) { - $pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid']); + $pages[$rr['iid']][] = array('url' => $rr['iid'],'title' => $rr['sid'], 'mid' => $rr['mid']); } } @@ -92,9 +106,10 @@ function layouts_content(&$a) { //Build the base URL for edit links $url = z_root() . "/editlayout/" . $which; - return $o . replace_macros(get_markup_template("webpagelist.tpl"), array( + return $o . replace_macros(get_markup_template("layoutlist.tpl"), array( '$baseurl' => $url, '$edit' => t('Edit'), + '$share' => t('Share'), '$pages' => $pages, '$channel' => $which, '$view' => t('View'), |