mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-10 11:02:41 +00:00
add javascript into external file
This commit is contained in:
parent
29de2282a3
commit
efbf85e34e
|
@ -39,21 +39,9 @@ class SeedDMS_View_FolderAccess extends SeedDMS_Bootstrap_Style {
|
||||||
print "</select>\n";
|
print "</select>\n";
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
function show() { /* {{{ */
|
function js() { /* {{{ */
|
||||||
$dms = $this->params['dms'];
|
header('Content-Type: application/javascript; charset=UTF-8');
|
||||||
$user = $this->params['user'];
|
|
||||||
$folder = $this->params['folder'];
|
|
||||||
$allUsers = $this->params['allusers'];
|
|
||||||
$allGroups = $this->params['allgroups'];
|
|
||||||
$rootfolderid = $this->params['rootfolderid'];
|
|
||||||
|
|
||||||
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
|
||||||
$this->globalNavigation($folder);
|
|
||||||
$this->contentStart();
|
|
||||||
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script language="JavaScript">
|
|
||||||
function checkForm()
|
function checkForm()
|
||||||
{
|
{
|
||||||
msg = new Array()
|
msg = new Array()
|
||||||
|
@ -74,9 +62,28 @@ function checkForm()
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>
|
$(document).ready(function() {
|
||||||
|
$('body').on('submit', '#form1', function(ev){
|
||||||
|
if(checkForm()) return;
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
});
|
||||||
<?php
|
<?php
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
function show() { /* {{{ */
|
||||||
|
$dms = $this->params['dms'];
|
||||||
|
$user = $this->params['user'];
|
||||||
|
$folder = $this->params['folder'];
|
||||||
|
$allUsers = $this->params['allusers'];
|
||||||
|
$allGroups = $this->params['allgroups'];
|
||||||
|
$rootfolderid = $this->params['rootfolderid'];
|
||||||
|
|
||||||
|
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
||||||
|
$this->globalNavigation($folder);
|
||||||
|
$this->contentStart();
|
||||||
|
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
||||||
|
|
||||||
$this->contentHeading(getMLText("edit_folder_access"));
|
$this->contentHeading(getMLText("edit_folder_access"));
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
|
|
||||||
|
@ -227,7 +234,7 @@ function checkForm()
|
||||||
print "</table><br>";
|
print "</table><br>";
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<form action="../op/op.FolderAccess.php" name="form1" onsubmit="return checkForm();">
|
<form action="../op/op.FolderAccess.php" id="form1" name="form1">
|
||||||
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
<?php echo createHiddenFieldWithKey('folderaccess'); ?>
|
||||||
<input type="Hidden" name="folderid" value="<?php print $folder->getID()?>">
|
<input type="Hidden" name="folderid" value="<?php print $folder->getID()?>">
|
||||||
<input type="Hidden" name="action" value="addaccess">
|
<input type="Hidden" name="action" value="addaccess">
|
||||||
|
|
|
@ -31,24 +31,9 @@ require_once("class.Bootstrap.php");
|
||||||
*/
|
*/
|
||||||
class SeedDMS_View_FolderNotify extends SeedDMS_Bootstrap_Style {
|
class SeedDMS_View_FolderNotify extends SeedDMS_Bootstrap_Style {
|
||||||
|
|
||||||
function show() { /* {{{ */
|
function js() { /* {{{ */
|
||||||
$dms = $this->params['dms'];
|
header('Content-Type: application/javascript; charset=UTF-8');
|
||||||
$user = $this->params['user'];
|
|
||||||
$folder = $this->params['folder'];
|
|
||||||
$allUsers = $this->params['allusers'];
|
|
||||||
$allGroups = $this->params['allgroups'];
|
|
||||||
$strictformcheck = $this->params['strictformcheck'];
|
|
||||||
|
|
||||||
$notifyList = $folder->getNotifyList();
|
|
||||||
|
|
||||||
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
|
||||||
$this->globalNavigation($folder);
|
|
||||||
$this->contentStart();
|
|
||||||
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script language="JavaScript">
|
|
||||||
function checkForm()
|
function checkForm()
|
||||||
{
|
{
|
||||||
msg = new Array();
|
msg = new Array();
|
||||||
|
@ -69,9 +54,30 @@ function checkForm()
|
||||||
else
|
else
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
</script>
|
$(document).ready(function() {
|
||||||
|
$('body').on('submit', '#form1', function(ev){
|
||||||
|
if(checkForm()) return;
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
});
|
||||||
<?php
|
<?php
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
function show() { /* {{{ */
|
||||||
|
$dms = $this->params['dms'];
|
||||||
|
$user = $this->params['user'];
|
||||||
|
$folder = $this->params['folder'];
|
||||||
|
$allUsers = $this->params['allusers'];
|
||||||
|
$allGroups = $this->params['allgroups'];
|
||||||
|
$strictformcheck = $this->params['strictformcheck'];
|
||||||
|
|
||||||
|
$notifyList = $folder->getNotifyList();
|
||||||
|
|
||||||
|
$this->htmlStartPage(getMLText("folder_title", array("foldername" => htmlspecialchars($folder->getName()))));
|
||||||
|
$this->globalNavigation($folder);
|
||||||
|
$this->contentStart();
|
||||||
|
$this->pageNavigation($this->getFolderPathHTML($folder, true), "view_folder", $folder);
|
||||||
|
|
||||||
$this->contentHeading(getMLText("edit_existing_notify"));
|
$this->contentHeading(getMLText("edit_existing_notify"));
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
|
|
||||||
|
@ -125,7 +131,7 @@ function checkForm()
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<br>
|
<br>
|
||||||
<form action="../op/op.FolderNotify.php" method="post" name="form1" onsubmit="return checkForm();">
|
<form action="../op/op.FolderNotify.php" method="post" id="form1" name="form1">
|
||||||
<?php echo createHiddenFieldWithKey('foldernotify'); ?>
|
<?php echo createHiddenFieldWithKey('foldernotify'); ?>
|
||||||
<input type="Hidden" name="folderid" value="<?php print $folder->getID()?>">
|
<input type="Hidden" name="folderid" value="<?php print $folder->getID()?>">
|
||||||
<input type="Hidden" name="action" value="addnotify">
|
<input type="Hidden" name="action" value="addnotify">
|
||||||
|
|
|
@ -31,6 +31,42 @@ require_once("class.Bootstrap.php");
|
||||||
*/
|
*/
|
||||||
class SeedDMS_View_ForcePasswordChange extends SeedDMS_Bootstrap_Style {
|
class SeedDMS_View_ForcePasswordChange extends SeedDMS_Bootstrap_Style {
|
||||||
|
|
||||||
|
function js() { /* {{{ */
|
||||||
|
$strictformcheck = $this->params['strictformcheck'];
|
||||||
|
|
||||||
|
header('Content-Type: application/javascript');
|
||||||
|
?>
|
||||||
|
function checkForm()
|
||||||
|
{
|
||||||
|
msg = new Array();
|
||||||
|
|
||||||
|
if($("#currentpwd").val() == "") msg.push("<?php printMLText("js_no_pwd");?>");
|
||||||
|
if($("#pwd").val() == "") msg.push("<?php printMLText("js_no_pwd");?>");
|
||||||
|
if($("#pwd").val() != $("#pwdconf").val()) msg.push("<?php printMLText("js_pwd_not_conf");?>");
|
||||||
|
if (msg != "") {
|
||||||
|
noty({
|
||||||
|
text: msg.join('<br />'),
|
||||||
|
type: 'error',
|
||||||
|
dismissQueue: true,
|
||||||
|
layout: 'topRight',
|
||||||
|
theme: 'defaultTheme',
|
||||||
|
_timeout: 1500,
|
||||||
|
});
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
$(document).ready( function() {
|
||||||
|
$('body').on('submit', '#form', function(ev){
|
||||||
|
if(checkForm()) return;
|
||||||
|
event.preventDefault();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
<?php
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
function show() { /* {{{ */
|
function show() { /* {{{ */
|
||||||
$dms = $this->params['dms'];
|
$dms = $this->params['dms'];
|
||||||
$user = $this->params['user'];
|
$user = $this->params['user'];
|
||||||
|
@ -43,7 +79,7 @@ class SeedDMS_View_ForcePasswordChange extends SeedDMS_Bootstrap_Style {
|
||||||
echo "<div class=\"alert\">".getMLText('password_expiration_text')."</div>";
|
echo "<div class=\"alert\">".getMLText('password_expiration_text')."</div>";
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
?>
|
?>
|
||||||
<form action="../op/op.EditUserData.php" method="post" name="form1" onsubmit="return checkForm();">
|
<form action="../op/op.EditUserData.php" method="post" id="form" name="form1">
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php printMLText("current_password");?>:</td>
|
<td><?php printMLText("current_password");?>:</td>
|
||||||
|
@ -51,7 +87,7 @@ class SeedDMS_View_ForcePasswordChange extends SeedDMS_Bootstrap_Style {
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php printMLText("password");?>:</td>
|
<td><?php printMLText("password");?>:</td>
|
||||||
<td><input class="pwd" type="Password" rel="strengthbar" name="pwd" size="30"></td>
|
<td><input id="pwd" class="pwd" type="Password" rel="strengthbar" name="pwd" size="30"></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?php printMLText("password_strength");?>:</td>
|
<td><?php printMLText("password_strength");?>:</td>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user