mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-09 13:06:14 +00:00
move updating document into controller
This commit is contained in:
parent
0ddabba869
commit
8e69893e89
87
controllers/class.UpdateDocument.php
Normal file
87
controllers/class.UpdateDocument.php
Normal file
|
@ -0,0 +1,87 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of UpdateDocument controller
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2013 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class which does the busines logic for downloading a document
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010-2013 Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
class SeedDMS_Controller_UpdateDocument extends SeedDMS_Controller_Common {
|
||||||
|
|
||||||
|
public function run() { /* {{{ */
|
||||||
|
$name = $this->getParam('name');
|
||||||
|
$comment = $this->getParam('comment');
|
||||||
|
|
||||||
|
/* Call preUpdateDocument early, because it might need to modify some
|
||||||
|
* of the parameters.
|
||||||
|
*/
|
||||||
|
if(false === $this->callHook('preUpdateDocument')) {
|
||||||
|
$this->errormsg = 'hook_preUpdateDocument_failed';
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
$dms = $this->params['dms'];
|
||||||
|
$user = $this->params['user'];
|
||||||
|
$document = $this->params['document'];
|
||||||
|
$settings = $this->params['settings'];
|
||||||
|
$index = $this->params['index'];
|
||||||
|
$indexconf = $this->params['indexconf'];
|
||||||
|
$folder = $this->params['folder'];
|
||||||
|
$userfiletmp = $this->getParam('userfiletmp');
|
||||||
|
$userfilename = $this->getParam('userfilename');
|
||||||
|
$filetype = $this->getParam('filetype');
|
||||||
|
$userfiletype = $this->getParam('userfiletype');
|
||||||
|
$reviewers = $this->getParam('reviewers');
|
||||||
|
$approvers = $this->getParam('approvers');
|
||||||
|
$reqversion = $this->getParam('reqversion');
|
||||||
|
$comment = $this->getParam('comment');
|
||||||
|
$attributes = $this->getParam('attributes');
|
||||||
|
$workflow = $this->getParam('workflow');
|
||||||
|
$maxsizeforfulltext = $this->getParam('maxsizeforfulltext');
|
||||||
|
|
||||||
|
$result = $this->callHook('updateDocument');
|
||||||
|
if($result === null) {
|
||||||
|
$filesize = SeedDMS_Core_File::fileSize($userfiletmp);
|
||||||
|
$contentResult=$document->addContent($comment, $user, $userfiletmp, basename($userfilename), $filetype, $userfiletype, $reviewers, $approvers, $version=0, $attributes, $workflow);
|
||||||
|
|
||||||
|
if ($this->hasParam('expires')) {
|
||||||
|
if($document->setExpires($this->getParam('expires'))) {
|
||||||
|
} else {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($index) {
|
||||||
|
$lucenesearch = new $indexconf['Search']($index);
|
||||||
|
if($hit = $lucenesearch->getDocument((int) $document->getId())) {
|
||||||
|
$index->delete($hit->id);
|
||||||
|
}
|
||||||
|
$idoc = new $indexconf['IndexedDocument']($dms, $document, isset($settings->_converters['fulltext']) ? $settings->_converters['fulltext'] : null, !($filesize < $settings->_maxSizeForFullText));
|
||||||
|
if(!$this->callHook('preIndexDocument', $document, $idoc)) {
|
||||||
|
}
|
||||||
|
$index->addDocument($idoc);
|
||||||
|
$index->commit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$this->callHook('postUpdateDocument', $document, $contentResult->getContent())) {
|
||||||
|
}
|
||||||
|
$result = $contentResult->getContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
} /* }}} */
|
||||||
|
}
|
||||||
|
|
|
@ -24,8 +24,17 @@ include("../inc/inc.Language.php");
|
||||||
include("../inc/inc.Init.php");
|
include("../inc/inc.Init.php");
|
||||||
include("../inc/inc.Extension.php");
|
include("../inc/inc.Extension.php");
|
||||||
include("../inc/inc.DBInit.php");
|
include("../inc/inc.DBInit.php");
|
||||||
include("../inc/inc.ClassUI.php");
|
|
||||||
include("../inc/inc.Authentication.php");
|
include("../inc/inc.Authentication.php");
|
||||||
|
include("../inc/inc.ClassUI.php");
|
||||||
|
include("../inc/inc.ClassController.php");
|
||||||
|
|
||||||
|
$tmp = explode('.', basename($_SERVER['SCRIPT_FILENAME']));
|
||||||
|
$controller = Controller::factory($tmp[1]);
|
||||||
|
|
||||||
|
/* Check if the form data comes from a trusted request */
|
||||||
|
if(!checkFormKey('updatedocument')) {
|
||||||
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_request_token"))),getMLText("invalid_request_token"));
|
||||||
|
}
|
||||||
|
|
||||||
if (!isset($_POST["documentid"]) || !is_numeric($_POST["documentid"]) || intval($_POST["documentid"])<1) {
|
if (!isset($_POST["documentid"]) || !is_numeric($_POST["documentid"]) || intval($_POST["documentid"])<1) {
|
||||||
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
UI::exitError(getMLText("document_title", array("documentname" => getMLText("invalid_doc_id"))),getMLText("invalid_doc_id"));
|
||||||
|
@ -58,11 +67,12 @@ if ($document->isLocked()) {
|
||||||
else $document->setLocked(false);
|
else $document->setLocked(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST['fineuploaderuuids']) && $_POST['fineuploaderuuids']) {
|
$prefix = 'userfile';
|
||||||
$uuids = explode(';', $_POST['fineuploaderuuids']);
|
if(isset($_POST[$prefix.'-fine-uploader-uuids']) && $_POST[$prefix.'-fine-uploader-uuids']) {
|
||||||
$names = explode(';', $_POST['fineuploadernames']);
|
$uuids = explode(';', $_POST[$prefix.'-fine-uploader-uuids']);
|
||||||
|
$names = explode(';', $_POST[$prefix.'-fine-uploader-names']);
|
||||||
$uuid = $uuids[0];
|
$uuid = $uuids[0];
|
||||||
$fullfile = $settings->_stagingDir.'/'.basename($uuid);
|
$fullfile = $settings->_stagingDir.'/'.utf8_basename($uuid);
|
||||||
if(file_exists($fullfile)) {
|
if(file_exists($fullfile)) {
|
||||||
$finfo = finfo_open(FILEINFO_MIME_TYPE);
|
$finfo = finfo_open(FILEINFO_MIME_TYPE);
|
||||||
$mimetype = finfo_file($finfo, $fullfile);
|
$mimetype = finfo_file($finfo, $fullfile);
|
||||||
|
@ -74,12 +84,7 @@ if(isset($_POST['fineuploaderuuids']) && $_POST['fineuploaderuuids']) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($_POST["comment"]))
|
if (isset($_FILES['userfile']) && $_FILES['userfile']['error'] == 0) {
|
||||||
$comment = $_POST["comment"];
|
|
||||||
else
|
|
||||||
$comment = "";
|
|
||||||
|
|
||||||
if ($_FILES['userfile']['error'] == 0) {
|
|
||||||
// if(!is_uploaded_file($_FILES["userfile"]["tmp_name"]))
|
// if(!is_uploaded_file($_FILES["userfile"]["tmp_name"]))
|
||||||
// UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured")."lsajdflk");
|
// UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured")."lsajdflk");
|
||||||
|
|
||||||
|
@ -121,6 +126,46 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
|
|
||||||
$fileType = ".".pathinfo($userfilename, PATHINFO_EXTENSION);
|
$fileType = ".".pathinfo($userfilename, PATHINFO_EXTENSION);
|
||||||
|
|
||||||
|
if($settings->_enableFullSearch) {
|
||||||
|
$index = $indexconf['Indexer']::open($settings->_luceneDir);
|
||||||
|
$indexconf['Indexer']::init($settings->_stopWordsFile);
|
||||||
|
} else {
|
||||||
|
$index = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isset($_POST["comment"]))
|
||||||
|
$comment = $_POST["comment"];
|
||||||
|
else
|
||||||
|
$comment = "";
|
||||||
|
|
||||||
|
$oldexpires = $document->getExpires();
|
||||||
|
switch($_POST["presetexpdate"]) {
|
||||||
|
case "date":
|
||||||
|
$tmp = explode('-', $_POST["expdate"]);
|
||||||
|
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]);
|
||||||
|
break;
|
||||||
|
case "1w":
|
||||||
|
$tmp = explode('-', date('Y-m-d'));
|
||||||
|
$expires = mktime(0,0,0, $tmp[1], $tmp[2]+7, $tmp[0]);
|
||||||
|
break;
|
||||||
|
case "1m":
|
||||||
|
$tmp = explode('-', date('Y-m-d'));
|
||||||
|
$expires = mktime(0,0,0, $tmp[1]+1, $tmp[2], $tmp[0]);
|
||||||
|
break;
|
||||||
|
case "1y":
|
||||||
|
$tmp = explode('-', date('Y-m-d'));
|
||||||
|
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]+1);
|
||||||
|
break;
|
||||||
|
case "2y":
|
||||||
|
$tmp = explode('-', date('Y-m-d'));
|
||||||
|
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]+2);
|
||||||
|
break;
|
||||||
|
case "never":
|
||||||
|
default:
|
||||||
|
$expires = null;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Get the list of reviewers and approvers for this document.
|
// Get the list of reviewers and approvers for this document.
|
||||||
$reviewers = array();
|
$reviewers = array();
|
||||||
$approvers = array();
|
$approvers = array();
|
||||||
|
@ -237,48 +282,25 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
$attributes = array();
|
$attributes = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(isset($GLOBALS['SEEDDMS_HOOKS']['updateDocument'])) {
|
$controller->setParam('folder', $folder);
|
||||||
foreach($GLOBALS['SEEDDMS_HOOKS']['updateDocument'] as $hookObj) {
|
$controller->setParam('document', $document);
|
||||||
if (method_exists($hookObj, 'preUpdateDocument')) {
|
$controller->setParam('index', $index);
|
||||||
$hookObj->preUpdateDocument(null, $document, array('name'=>&$name, 'comment'=>&$comment));
|
$controller->setParam('indexconf', $indexconf);
|
||||||
}
|
$controller->setParam('comment', $comment);
|
||||||
}
|
if($oldexpires != $expires)
|
||||||
}
|
$controller->setParam('expires', $expires);
|
||||||
|
$controller->setParam('userfiletmp', $userfiletmp);
|
||||||
$filesize = SeedDMS_Core_File::fileSize($userfiletmp);
|
$controller->setParam('userfilename', $userfilename);
|
||||||
$contentResult=$document->addContent($comment, $user, $userfiletmp, basename($userfilename), $fileType, $userfiletype, $reviewers, $approvers, $version=0, $attributes, $workflow);
|
$controller->setParam('filetype', $fileType);
|
||||||
if (is_bool($contentResult) && !$contentResult) {
|
$controller->setParam('userfiletype', $userfiletype);
|
||||||
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured"));
|
$controller->setParam('reviewers', $reviewers);
|
||||||
}
|
$controller->setParam('approvers', $approvers);
|
||||||
else {
|
$controller->setParam('attributes', $attributes);
|
||||||
if(isset($GLOBALS['SEEDDMS_HOOKS']['updateDocument'])) {
|
$controller->setParam('workflow', $workflow);
|
||||||
foreach($GLOBALS['SEEDDMS_HOOKS']['updateDocument'] as $hookObj) {
|
|
||||||
if (method_exists($hookObj, 'postUpdateDocument')) {
|
|
||||||
$hookObj->postUpdateDocument(null, $document, $contentResult->getContent());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if($settings->_enableFullSearch) {
|
|
||||||
$index = $indexconf['Indexer']::open($settings->_luceneDir);
|
|
||||||
if($index) {
|
|
||||||
$lucenesearch = new $indexconf['Search']($index);
|
|
||||||
if($hit = $lucenesearch->getDocument((int) $document->getId())) {
|
|
||||||
$index->delete($hit->id);
|
|
||||||
}
|
|
||||||
$indexconf['Indexer']::init($settings->_stopWordsFile);
|
|
||||||
$idoc = new $indexconf['IndexedDocument']($dms, $document, isset($settings->_converters['fulltext']) ? $settings->_converters['fulltext'] : null, !($filesize < $settings->_maxSizeForFullText));
|
|
||||||
if(isset($GLOBALS['SEEDDMS_HOOKS']['updateDocument'])) {
|
|
||||||
foreach($GLOBALS['SEEDDMS_HOOKS']['updateDocument'] as $hookObj) {
|
|
||||||
if (method_exists($hookObj, 'preIndexDocument')) {
|
|
||||||
$hookObj->preIndexDocument(null, $document, $idoc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$index->addDocument($idoc);
|
|
||||||
$index->commit();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
if(!$content = $controller->run()) {
|
||||||
|
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText($controller->getErrorMsg()));
|
||||||
|
} else {
|
||||||
// Send notification to subscribers.
|
// Send notification to subscribers.
|
||||||
if ($notifier){
|
if ($notifier){
|
||||||
$notifyList = $document->getNotifyList();
|
$notifyList = $document->getNotifyList();
|
||||||
|
@ -291,7 +313,7 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||||
$params['username'] = $user->getFullName();
|
$params['username'] = $user->getFullName();
|
||||||
$params['comment'] = $document->getComment();
|
$params['comment'] = $document->getComment();
|
||||||
$params['version_comment'] = $contentResult->getContent()->getComment();
|
$params['version_comment'] = $content->getComment();
|
||||||
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
||||||
$params['sitename'] = $settings->_siteName;
|
$params['sitename'] = $settings->_siteName;
|
||||||
$params['http_root'] = $settings->_httpRoot;
|
$params['http_root'] = $settings->_httpRoot;
|
||||||
|
@ -308,7 +330,7 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
$message = "request_workflow_action_email_body";
|
$message = "request_workflow_action_email_body";
|
||||||
$params = array();
|
$params = array();
|
||||||
$params['name'] = $document->getName();
|
$params['name'] = $document->getName();
|
||||||
$params['version'] = $contentResult->getContent()->getVersion();
|
$params['version'] = $content->getVersion();
|
||||||
$params['workflow'] = $workflow->getName();
|
$params['workflow'] = $workflow->getName();
|
||||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||||
$params['current_state'] = $workflow->getInitState()->getName();
|
$params['current_state'] = $workflow->getInitState()->getName();
|
||||||
|
@ -335,8 +357,8 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
$params = array();
|
$params = array();
|
||||||
$params['name'] = $document->getName();
|
$params['name'] = $document->getName();
|
||||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||||
$params['version'] = $contentResult->getContent()->getVersion();
|
$params['version'] = $content->getVersion();
|
||||||
$params['comment'] = $contentResult->getContent()->getComment();
|
$params['comment'] = $content->getComment();
|
||||||
$params['username'] = $user->getFullName();
|
$params['username'] = $user->getFullName();
|
||||||
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
||||||
$params['sitename'] = $settings->_siteName;
|
$params['sitename'] = $settings->_siteName;
|
||||||
|
@ -356,8 +378,8 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
$params = array();
|
$params = array();
|
||||||
$params['name'] = $document->getName();
|
$params['name'] = $document->getName();
|
||||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||||
$params['version'] = $contentResult->getContent()->getVersion();
|
$params['version'] = $content->getVersion();
|
||||||
$params['comment'] = $contentResult->getContent()->getComment();
|
$params['comment'] = $content->getComment();
|
||||||
$params['username'] = $user->getFullName();
|
$params['username'] = $user->getFullName();
|
||||||
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
||||||
$params['sitename'] = $settings->_siteName;
|
$params['sitename'] = $settings->_siteName;
|
||||||
|
@ -371,60 +393,25 @@ if ($_FILES['userfile']['error'] == 0) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
switch($_POST["presetexpdate"]) {
|
if($oldexpires != $document->getExpires()) {
|
||||||
case "date":
|
// Send notification to subscribers.
|
||||||
$tmp = explode('-', $_POST["expdate"]);
|
$subject = "expiry_changed_email_subject";
|
||||||
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]);
|
$message = "expiry_changed_email_body";
|
||||||
break;
|
$params = array();
|
||||||
case "1w":
|
$params['name'] = $document->getName();
|
||||||
$tmp = explode('-', date('Y-m-d'));
|
$params['folder_path'] = $folder->getFolderPathPlain();
|
||||||
$expires = mktime(0,0,0, $tmp[1], $tmp[2]+7, $tmp[0]);
|
$params['username'] = $user->getFullName();
|
||||||
break;
|
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
||||||
case "1m":
|
$params['sitename'] = $settings->_siteName;
|
||||||
$tmp = explode('-', date('Y-m-d'));
|
$params['http_root'] = $settings->_httpRoot;
|
||||||
$expires = mktime(0,0,0, $tmp[1]+1, $tmp[2], $tmp[0]);
|
$notifier->toList($user, $notifyList["users"], $subject, $message, $params);
|
||||||
break;
|
foreach ($notifyList["groups"] as $grp) {
|
||||||
case "1y":
|
$notifier->toGroup($user, $grp, $subject, $message, $params);
|
||||||
$tmp = explode('-', date('Y-m-d'));
|
|
||||||
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]+1);
|
|
||||||
break;
|
|
||||||
case "2y":
|
|
||||||
$tmp = explode('-', date('Y-m-d'));
|
|
||||||
$expires = mktime(0,0,0, $tmp[1], $tmp[2], $tmp[0]+2);
|
|
||||||
break;
|
|
||||||
case "never":
|
|
||||||
default:
|
|
||||||
$expires = null;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($expires) {
|
|
||||||
if($document->setExpires($expires)) {
|
|
||||||
if($notifier) {
|
|
||||||
$notifyList = $document->getNotifyList();
|
|
||||||
$folder = $document->getFolder();
|
|
||||||
|
|
||||||
// Send notification to subscribers.
|
|
||||||
$subject = "expiry_changed_email_subject";
|
|
||||||
$message = "expiry_changed_email_body";
|
|
||||||
$params = array();
|
|
||||||
$params['name'] = $document->getName();
|
|
||||||
$params['folder_path'] = $folder->getFolderPathPlain();
|
|
||||||
$params['username'] = $user->getFullName();
|
|
||||||
$params['url'] = "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot."out/out.ViewDocument.php?documentid=".$document->getID();
|
|
||||||
$params['sitename'] = $settings->_siteName;
|
|
||||||
$params['http_root'] = $settings->_httpRoot;
|
|
||||||
$notifier->toList($user, $notifyList["users"], $subject, $message, $params);
|
|
||||||
foreach ($notifyList["groups"] as $grp) {
|
|
||||||
$notifier->toGroup($user, $grp, $subject, $message, $params);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
UI::exitError(getMLText("document_title", array("documentname" => $document->getName())),getMLText("error_occured"));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if($settings->_removeFromDropFolder) {
|
if($settings->_removeFromDropFolder) {
|
||||||
if(file_exists($userfiletmp)) {
|
if(file_exists($userfiletmp)) {
|
||||||
unlink($userfiletmp);
|
unlink($userfiletmp);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user