summaryrefslogtreecommitdiff
path: root/classes/dlg.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-27 23:12:11 +0400
committerAndrew Dolgov <[email protected]>2011-12-27 23:12:11 +0400
commit7acc194b538ca38a59dcd3fc3fef448459703533 (patch)
treec16908251b238bee68b76253a2828909520c3d72 /classes/dlg.php
parent2c43770f986aa321d0fff4d8c5e266ed58245bf0 (diff)
parent55f34b811fef1f5e834fbcc65e41f6748e49ffd1 (diff)
Merge branch 'master' of github.com:gothfox/Tiny-Tiny-RSS
Diffstat (limited to 'classes/dlg.php')
-rw-r--r--classes/dlg.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/classes/dlg.php b/classes/dlg.php
index 2d1cb9cc5..55eb5e37e 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -954,5 +954,28 @@ class Dlg extends Protected_Handler {
return;
}
+ function dataImport() {
+ header("Content-Type: text/html"); # required for iframe
+
+ print "<div style='text-align : center'>";
+
+ if (is_file($_FILES['export_file']['tmp_name'])) {
+
+ perform_data_import($this->link, $_FILES['export_file']['tmp_name'], $_SESSION['uid']);
+
+ } else {
+ print "<p>" . T_sprintf("Could not upload file. You might need to adjust upload_max_filesize
+ in PHP.ini (current value = %s)", ini_get("upload_max_filesize")) . " or use CLI import tool.</p>";
+
+ }
+
+ print "<button dojoType=\"dijit.form.Button\"
+ onclick=\"dijit.byId('dataImportDlg').hide()\">".
+ __('Close this window')."</button>";
+
+ print "</div>";
+
+ }
+
}
?>