diff options
author | friendica <info@friendica.com> | 2014-08-28 01:08:42 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-28 01:08:42 -0700 |
commit | ed4896def1f90d903919311312fee974384540d7 (patch) | |
tree | eecbd6f92877ee922005ab7b8f30a4f962ea630f /mod/layouts.php | |
parent | a4f734e37c2092b91d3915b5f4bb90eba6a4b605 (diff) | |
download | volse-hubzilla-ed4896def1f90d903919311312fee974384540d7.tar.gz volse-hubzilla-ed4896def1f90d903919311312fee974384540d7.tar.bz2 volse-hubzilla-ed4896def1f90d903919311312fee974384540d7.zip |
make blocks, webpages, and layouts postable (pre-filled forms if supplied from elsewhere). The only serious issue is with ordering - you have to process and save a named layout before you can save a webpage that uses that layout name. Otherwise it will get unset during the save.
Diffstat (limited to 'mod/layouts.php')
-rw-r--r-- | mod/layouts.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mod/layouts.php b/mod/layouts.php index 318e6e29f..2d14212cf 100644 --- a/mod/layouts.php +++ b/mod/layouts.php @@ -68,7 +68,8 @@ function layouts_content(&$a) { // Create a status editor (for now - we'll need a WYSIWYG eventually) to create pages - // Nickname is set to the observers xchan, and profile_uid to the owners. This lets you post pages at other people's channels. + // Nickname is set to the observers xchan, and profile_uid to the owners. + // This lets you post pages at other people's channels. require_once ('include/conversation.php'); @@ -85,6 +86,14 @@ function layouts_content(&$a) { 'profile_uid' => intval($owner), ); + if($_REQUEST['title']) + $x['title'] = $_REQUEST['title']; + if($_REQUEST['body']) + $x['body'] = $_REQUEST['body']; + if($_REQUEST['pagetitle']) + $x['pagetitle'] = $_REQUEST['pagetitle']; + + $o .= status_editor($a,$x); // 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. |