aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-07-31 07:30:25 -0400
committerAndrew Manning <tamanning@zoho.com>2016-07-31 07:30:25 -0400
commit7c475575549161d465189fa5e726739f4a4ac76c (patch)
tree66414a6d4f161dcb88ccd5f919fd77a8d3369539 /Zotlabs/Module
parent32366284a8372a4d5c7798b3ee3b238a614915ab (diff)
downloadvolse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.tar.gz
volse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.tar.bz2
volse-hubzilla-7c475575549161d465189fa5e726739f4a4ac76c.zip
Improved UI. Removed logger statements.
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Webpages.php26
1 files changed, 17 insertions, 9 deletions
diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php
index ee9633243..d3199f223 100644
--- a/Zotlabs/Module/Webpages.php
+++ b/Zotlabs/Module/Webpages.php
@@ -51,12 +51,12 @@ class Webpages extends \Zotlabs\Web\Controller {
$_SESSION['action'] = null;
$o .= replace_macros(get_markup_template('webpage_import.tpl'), array(
'$title' => t('Import Webpage Elements'),
+ '$importbtn' => t('Import selected'),
'$action' => 'import',
'$pages' => $_SESSION['pages'],
'$layouts' => $_SESSION['layouts'],
'$blocks' => $_SESSION['blocks'],
));
- //logger('webpage_import.tpl: ' . $o);
return $o;
case 'importselected':
@@ -254,7 +254,8 @@ class Webpages extends \Zotlabs\Web\Controller {
}
}
if(!$okay) {
- json_return_and_die(array('message' => 'Invalid file MIME type'));
+ notice( t('Invalid file type.') . EOL);
+ return;
}
$zip = new \ZipArchive();
if ($zip->open($source) === true) {
@@ -263,7 +264,6 @@ class Webpages extends \Zotlabs\Web\Controller {
$zip->extractTo($website); // change this to the correct site path
$zip->close();
@unlink($source); // delete the compressed file now that the content has been extracted
-
$cloud = false;
} else {
notice( t('Error opening zip file') . EOL);
@@ -289,14 +289,19 @@ class Webpages extends \Zotlabs\Web\Controller {
if ($cloud !== null) {
require_once('include/import.php');
$elements = [];
- $elements['pages'] = scan_webpage_elements($_POST['path'], 'page', $cloud);
- $elements['layouts'] = scan_webpage_elements($_POST['path'], 'layout', $cloud);
- $elements['blocks'] = scan_webpage_elements($_POST['path'], 'block', $cloud);
+ if($cloud) {
+ $path = $_POST['path'];
+ } else {
+ $path = $website;
+ }
+ $elements['pages'] = scan_webpage_elements($path, 'page', $cloud);
+ $elements['layouts'] = scan_webpage_elements($path, 'layout', $cloud);
+ $elements['blocks'] = scan_webpage_elements($path, 'block', $cloud);
$_SESSION['blocks'] = $elements['blocks'];
$_SESSION['layouts'] = $elements['layouts'];
$_SESSION['pages'] = $elements['pages'];
if(!(empty($elements['pages']) && empty($elements['blocks']) && empty($elements['layouts']))) {
- info( t('Webpages elements detected.') . EOL);
+ //info( t('Webpages elements detected.') . EOL);
$_SESSION['action'] = 'import';
} else {
notice( t('No webpage elements detected.') . EOL);
@@ -306,7 +311,7 @@ class Webpages extends \Zotlabs\Web\Controller {
}
// If the website elements were imported from a zip file, delete the temporary decompressed files
- if ($cloud === false && $website) {
+ if ($cloud === false && $website && $elements) {
rrmdir($website); // Delete the temporary decompressed files
}
@@ -372,7 +377,10 @@ class Webpages extends \Zotlabs\Web\Controller {
}
}
$_SESSION['import_pages'] = $pages;
- break;
+ if(!(empty($_SESSION['import_pages']) && empty($_SESSION['import_blocks']) && empty($_SESSION['import_layouts']))) {
+ info( t('Import complete.') . EOL);
+ }
+ break;
default :
break;