Commit 104268e7248313a1fbf56a414f3bbd3d11df6bed
1 parent
794d2aa0
KTS-3264
"Welcome Dashlet needs to be changed." Fixed. Added Changes. Committed By: Jonathan Byrne Reviewed By: Jalaloedien Abrahams git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8386 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
3 changed files
with
54 additions
and
9 deletions
kthelp/ktcore/EN/welcome.html
| @@ -3,16 +3,31 @@ | @@ -3,16 +3,31 @@ | ||
| 3 | <title>Welcome to KnowledgeTree</title> | 3 | <title>Welcome to KnowledgeTree</title> |
| 4 | </head> | 4 | </head> |
| 5 | <body> | 5 | <body> |
| 6 | -<p class="descriptiveText">KnowledgeTree is a commercial open source, web-based Document Management System. KnowledgeTree allows you to move away from uncontrolled and unaudited shared network drives to an environment which encourages knowledge sharing and meets regulatory requirements.</p> | ||
| 7 | - | ||
| 8 | -<p class="descriptiveText">KnowledgeTree provides:</p> | 6 | +<p class="descriptiveText"><b>KnowledgeTree is Document Management Made Simple.</b></p><br> |
| 7 | +<p class="descriptiveText">Easily and securely | ||
| 8 | + manage your company's document creation, editing, versioning, and sharing - all from | ||
| 9 | + a powerful Web interface and Microsoft® Office® and Windows® Explorer® tools.</p> | ||
| 10 | +<br> | ||
| 11 | +<p class="descriptiveText"><b>KnowledgeTree Community Edition is licensed free of charge and supplied with | ||
| 12 | +<a href="http://www.knowledgetree.com/commercial_support" target="_blank">no support</a>, <a href="http://www.knowledgetree.com/commercial_support" target="_blank">no maintenance</a>, | ||
| 13 | +and <a href="http://www.knowledgetree.com/commercial_support" target="_blank">no warranty</a>.</b></p> | ||
| 14 | +<br> | ||
| 9 | 15 | ||
| 10 | -<ul class="descriptiveText"><li>A central document repository with audited document content version control</li> | ||
| 11 | - <li>Powerful document metadata management and versioning</li> | ||
| 12 | - <li>Sophisticated document authoring management and workflow</li> | ||
| 13 | - <li>Full-text indexing technology allowing search within document contents</li> | ||
| 14 | - <li>Powerful security group and role-based security model and integration with Directory Servers.</li> | ||
| 15 | -</ul> | 16 | +<p class="descriptiveText">Commercially supported and feature-enhanced editions of |
| 17 | + KnowledgeTree are available:</p> | ||
| 18 | + | ||
| 19 | +<ul class="descriptiveText"><li><a href="http://www.knowledgetree.com/live" target="_blank">KnowledgeTreeLive</a> is an easy to use and powerful online | ||
| 20 | + document management service based on the KnowledgeTree application you're currently | ||
| 21 | + using. KnowledgeTreeLive provides you with all the powerful features of the premium | ||
| 22 | + editions of KnowledgeTree without requiring you to invest in, and maintain, your own | ||
| 23 | + servers.</li> | ||
| 24 | + <li><a href="http://www.knowledgetree.com/products/knowledgetree_editions_feature_matrix" target="_blank">KnowledgeTree Premium, Plus and Basic</a> editions are commercially supported and | ||
| 25 | + feature-enhanced editions of KnowledgeTree, providing your organization with the | ||
| 26 | + peace of mind that you will always have access to our support engineers, powerful | ||
| 27 | + desktop and Microsoft® Office® integration and other document management features.</li> | ||
| 28 | + | ||
| 29 | +</ul> | ||
| 30 | +<br> | ||
| 16 | 31 | ||
| 17 | </body> | 32 | </body> |
| 18 | </html> | 33 | </html> |
kthelp/ktcore/EN/welcomeCommercial.html
0 → 100644
| 1 | +<html> | ||
| 2 | +<head> | ||
| 3 | +<title>Welcome to KnowledgeTree</title> | ||
| 4 | +</head> | ||
| 5 | +<body> | ||
| 6 | +<p class="descriptiveText"><b>KnowledgeTree is Document Management Made Simple.</b></p> <br> | ||
| 7 | + | ||
| 8 | +<p class="descriptiveText">Easily and securely manage your company's document creation, editing, versioning, and sharing - all from a powerful Web interface and Microsoft® Office® and Windows® Explorer® tools.</p> <br> | ||
| 9 | + | ||
| 10 | +<p class="descriptiveText">A subscription to KnowledgeTree provides your organization with product updates, enhanced document management features, and commercial support. Please view your welcome mailer for information on accessing these services.</p> <br> | ||
| 11 | + | ||
| 12 | + | ||
| 13 | + | ||
| 14 | +</body> | ||
| 15 | +</html> | ||
| 0 | \ No newline at end of file | 16 | \ No newline at end of file |
plugins/ktcore/KTDashlets.php
| @@ -51,7 +51,22 @@ class KTInfoDashlet extends KTBaseDashlet { | @@ -51,7 +51,22 @@ class KTInfoDashlet extends KTBaseDashlet { | ||
| 51 | var $help_id; | 51 | var $help_id; |
| 52 | 52 | ||
| 53 | function KTInfoDashlet() { | 53 | function KTInfoDashlet() { |
| 54 | + global $default; | ||
| 54 | $this->sTitle = sprintf(_kt('Welcome to %s'), APP_NAME); | 55 | $this->sTitle = sprintf(_kt('Welcome to %s'), APP_NAME); |
| 56 | + $versionName = substr($default->versionName, -17); | ||
| 57 | + | ||
| 58 | + if($versionName != 'Community Edition') | ||
| 59 | + { | ||
| 60 | + $this->helpLocation = 'ktcore/welcomeCommercial.html'; | ||
| 61 | + } | ||
| 62 | + | ||
| 63 | + //This check is for non english language packs which might not have | ||
| 64 | + //a commercial welcome page. | ||
| 65 | + $oHelpCheck = KTHelp::getHelpInfo($this->helpLocation); | ||
| 66 | + if(PEAR::isError($oHelpCheck)) | ||
| 67 | + { | ||
| 68 | + $this->helpLocation = 'ktcore/welcome.html'; | ||
| 69 | + } | ||
| 55 | } | 70 | } |
| 56 | 71 | ||
| 57 | function is_active($oUser) { | 72 | function is_active($oUser) { |