do not call global functions anymore

This commit is contained in:
Uwe Steinmann 2013-02-26 09:46:35 +01:00
parent f303ca2903
commit ed28cfb758

View File

@ -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();