Commit 8e04aae9aee0fc40d1095606745b594ffef90079

Authored by michael
1 parent f2e4fe38

standardised headings


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2541 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/administration/doccheckoutmanagement/listDocumentsBL.php
@@ -19,7 +19,7 @@ if (checkSession()) { @@ -19,7 +19,7 @@ if (checkSession()) {
19 19
20 $oPatternCustom = & new PatternCustom(); 20 $oPatternCustom = & new PatternCustom();
21 $aDocuments = Document::getList("is_checked_out = 1"); 21 $aDocuments = Document::getList("is_checked_out = 1");
22 - $sToRender .= renderHeading("Checked out Documents"); 22 + $sToRender .= renderHeading("Document Checkout Management");
23 $sToRender .= "<table><tr><th width=\"80%\">Document</th><th>&nbsp;</th>"; 23 $sToRender .= "<table><tr><th width=\"80%\">Document</th><th>&nbsp;</th>";
24 if (count($aDocuments) > 0) { 24 if (count($aDocuments) > 0) {
25 for ($i=0; $i<count($aDocuments); $i++) { 25 for ($i=0; $i<count($aDocuments); $i++) {
presentation/lookAndFeel/knowledgeTree/administration/docfieldmanagement/listDocFieldsUI.inc
@@ -33,7 +33,7 @@ function getDocumentFields() { @@ -33,7 +33,7 @@ function getDocumentFields() {
33 33
34 function getPage() { 34 function getPage() {
35 global $default; 35 global $default;
36 - $sToRender .= renderHeading("Current Document Fields"); 36 + $sToRender .= renderHeading("Document Field Management");
37 37
38 // add user link 38 // add user link
39 $sToRender .= getAddLink("addDocField", "Add A Document Field"); 39 $sToRender .= getAddLink("addDocField", "Add A Document Field");
presentation/lookAndFeel/knowledgeTree/administration/doctypemanagement/listDocTypesUI.inc
@@ -33,7 +33,7 @@ function getDocumentTypes() { @@ -33,7 +33,7 @@ function getDocumentTypes() {
33 33
34 function getPage() { 34 function getPage() {
35 global $default; 35 global $default;
36 - $sToRender .= renderHeading("Current Document Types"); 36 + $sToRender .= renderHeading("Document Type Management");
37 37
38 // add user link 38 // add user link
39 $sToRender .= getAddLink("addDocType", "Add A Document Type"); 39 $sToRender .= getAddLink("addDocType", "Add A Document Type");
presentation/lookAndFeel/knowledgeTree/administration/linkmanagement/listLinksUI.inc
@@ -32,7 +32,7 @@ function getQuickLinks() { @@ -32,7 +32,7 @@ function getQuickLinks() {
32 32
33 function getPage() { 33 function getPage() {
34 global $default; 34 global $default;
35 - $sToRender .= renderHeading("Current System QuickLinks"); 35 + $sToRender .= renderHeading("QuickLinks Management");
36 36
37 // add user link 37 // add user link
38 $sToRender .= getAddLink("addLink", "Add A QuickLink"); 38 $sToRender .= getAddLink("addLink", "Add A QuickLink");
presentation/lookAndFeel/knowledgeTree/administration/news/newsUI.inc
@@ -132,7 +132,7 @@ function renderAddNewsPage($oDashboardNews, $sErrorMessage = &quot;&quot;) { @@ -132,7 +132,7 @@ function renderAddNewsPage($oDashboardNews, $sErrorMessage = &quot;&quot;) {
132 function renderListNewsPage() { 132 function renderListNewsPage() {
133 global $default; 133 global $default;
134 134
135 - $sToRender .= renderHeading("List Dashboard News"); 135 + $sToRender .= renderHeading("Dashboard News Management");
136 $sToRender .= getAddLink("addNews", "Add Dashboard News Item"); 136 $sToRender .= getAddLink("addNews", "Add Dashboard News Item");
137 $sToRender .= "<table>\n"; 137 $sToRender .= "<table>\n";
138 $sToRender .= renderNewsTable(); 138 $sToRender .= renderNewsTable();
presentation/lookAndFeel/knowledgeTree/administration/orgmanagement/listOrgUI.inc
@@ -28,7 +28,7 @@ function getOrganisations() { @@ -28,7 +28,7 @@ function getOrganisations() {
28 28
29 function getPage() { 29 function getPage() {
30 global $default; 30 global $default;
31 - $sToRender .= renderHeading("Current System Organisations"); 31 + $sToRender .= renderHeading("Organisation Management");
32 32
33 // add user link 33 // add user link
34 $sToRender .= getAddLink("addOrg", "Add A Organisation"); 34 $sToRender .= getAddLink("addOrg", "Add A Organisation");
presentation/lookAndFeel/knowledgeTree/administration/rolemanagement/listRolesUI.inc
@@ -31,7 +31,7 @@ function getRoles() { @@ -31,7 +31,7 @@ function getRoles() {
31 31
32 function getPage() { 32 function getPage() {
33 global $default; 33 global $default;
34 - $sToRender .= renderHeading("Current System Roles"); 34 + $sToRender .= renderHeading("Role Management");
35 35
36 // add user link 36 // add user link
37 $sToRender .= getAddLink("addRole", "Add A Role"); 37 $sToRender .= getAddLink("addRole", "Add A Role");
presentation/lookAndFeel/knowledgeTree/administration/unitmanagement/listUnitsUI.inc
@@ -47,7 +47,7 @@ function getUnits($fOrganisationID) { @@ -47,7 +47,7 @@ function getUnits($fOrganisationID) {
47 47
48 function getPage($fOrganisationID) { 48 function getPage($fOrganisationID) {
49 global $default; 49 global $default;
50 - $sToRender .= renderHeading("Current System Units"); 50 + $sToRender .= renderHeading("Unit Management");
51 51
52 $sToRender .= getAddLink("addUnit", "Add A Unit"); 52 $sToRender .= getAddLink("addUnit", "Add A Unit");
53 $sToRender .= getOrganisationDisplay($fOrganisationID); 53 $sToRender .= getOrganisationDisplay($fOrganisationID);
presentation/lookAndFeel/knowledgeTree/administration/usermanagement/listUsersUI.inc
@@ -55,7 +55,7 @@ function getUsers($fGroupID) { @@ -55,7 +55,7 @@ function getUsers($fGroupID) {
55 55
56 function getPage($fGroupID) { 56 function getPage($fGroupID) {
57 global $default; 57 global $default;
58 - $sToRender .= renderHeading("Current System Users"); 58 + $sToRender .= renderHeading("User Management");
59 59
60 // add user link 60 // add user link
61 $sToRender .= getAddLink("addUser", "Add A User"); 61 $sToRender .= getAddLink("addUser", "Add A User");
presentation/lookAndFeel/knowledgeTree/administration/websitemanagement/listWebsitesUI.inc
@@ -32,7 +32,7 @@ function getWebsites() { @@ -32,7 +32,7 @@ function getWebsites() {
32 32
33 function getPage() { 33 function getPage() {
34 global $default; 34 global $default;
35 - $sToRender .= renderHeading("Current System Websites"); 35 + $sToRender .= renderHeading("Website Management");
36 36
37 // add user link 37 // add user link
38 $sToRender .= getAddLink("addWebsite", "Add A Website"); 38 $sToRender .= getAddLink("addWebsite", "Add A Website");