mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +00:00
do not call global functions anymore
This commit is contained in:
parent
f303ca2903
commit
ed28cfb758
|
@ -173,20 +173,20 @@ class SeedDMS_View_ManageNotify extends SeedDMS_Blue_Style {
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
$this->contentSubHeading(getMLText("user"));
|
$this->contentSubHeading(getMLText("user"));
|
||||||
$ret=$this->getNotificationList(false,true);
|
$ret=$this->getNotificationList(false,true);
|
||||||
printFolderNotificationList($ret);
|
$this->printFolderNotificationList($ret);
|
||||||
$this->contentSubHeading(getMLText("group"));
|
$this->contentSubHeading(getMLText("group"));
|
||||||
$ret=$this->getNotificationList(true,true);
|
$ret=$this->getNotificationList(true,true);
|
||||||
printFolderNotificationList($ret,false);
|
$this->printFolderNotificationList($ret,false);
|
||||||
$this->contentContainerEnd();
|
$this->contentContainerEnd();
|
||||||
|
|
||||||
$this->contentHeading(getMLText("edit_document_notify"));
|
$this->contentHeading(getMLText("edit_document_notify"));
|
||||||
$this->contentContainerStart();
|
$this->contentContainerStart();
|
||||||
$this->contentSubHeading(getMLText("user"));
|
$this->contentSubHeading(getMLText("user"));
|
||||||
$ret=$this->getNotificationList(false,false);
|
$ret=$this->getNotificationList(false,false);
|
||||||
printDocumentNotificationList($ret);
|
$this->printDocumentNotificationList($ret);
|
||||||
$this->contentSubHeading(getMLText("group"));
|
$this->contentSubHeading(getMLText("group"));
|
||||||
$ret=$this->getNotificationList(true,false);
|
$ret=$this->getNotificationList(true,false);
|
||||||
printDocumentNotificationList($ret,false);
|
$this->printDocumentNotificationList($ret,false);
|
||||||
$this->contentContainerEnd();
|
$this->contentContainerEnd();
|
||||||
|
|
||||||
$this->htmlEndPage();
|
$this->htmlEndPage();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user