put javascript into a separate file

This commit is contained in:
Uwe Steinmann 2016-01-28 15:04:14 +01:00
parent 3f0a455260
commit 5abe031222
2 changed files with 10 additions and 3 deletions

View File

@ -34,7 +34,7 @@ if ($user->isGuest()) {
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
$view = UI::factory($theme, $tmp[1], array('dms'=>$dms, 'user'=>$user, 'cachedir'=>$settings->_cacheDir, 'previewWidthList'=>$settings->_previewWidthList));
if($view) {
$view->show();
$view($_GET);
exit;
}

View File

@ -148,6 +148,13 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
}
} /* }}} */
function js() { /* {{{ */
header('Content-Type: application/javascript');
$this->printFolderChooserJs("form1");
$this->printDocumentChooserJs("form2");
} /* }}} */
function show() { /* {{{ */
$this->dms = $this->params['dms'];
$this->user = $this->params['user'];
@ -167,7 +174,7 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
print "<form method=\"post\" action=\"../op/op.ManageNotify.php?type=folder&action=add\" name=\"form1\">";
$this->contentSubHeading(getMLText("choose_target_folder"));
$this->printFolderChooser("form1",M_READ);
$this->printFolderChooserHtml("form1",M_READ);
print "<label class=\"checkbox\">";
print "<input type=\"checkbox\" name=\"recursefolder\" value=\"1\">";
print getMLText("include_subdirectories");
@ -188,7 +195,7 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Bootstrap_Style {
$this->contentSubHeading(getMLText("choose_target_document"));
/* 'form1' must be passed to printDocumentChooser() because the typeahead
* function is currently hardcoded on this value */
$this->printDocumentChooser("form2");
$this->printDocumentChooserHtml("form2");
print "<br /><button type='submit' class='btn'><i class=\"icon-plus\"></i> ".getMLText("add")."</button>";
print "</form>";