Difference between revisions of "OpenEMR Wiki"

From OpenEMR Project Wiki
(Created page with "The OpenEMR wiki can be found at http://open-emr.org/wiki/ This is based on mediwiki version 1.16.5 with following extensions: :Confirm user accounts :MultipleUpload (Version 2....")
 
Line 1: Line 1:
The OpenEMR wiki can be found at http://open-emr.org/wiki/
*The OpenEMR wiki can be found at http://open-emr.org/wiki/


This is based on mediwiki version 1.16.5 with following extensions:
*This is based on mediwiki version 1.16.5 with following extensions:
:Confirm user accounts
::Confirm user accounts
:MultipleUpload (Version 2.0)
::MultipleUpload (Version 2.0)
:Password Reset (Version 1.7)
::Password Reset (Version 1.7)
:Google Analytics Integration (Version 2.0.2)
::Google Analytics Integration (Version 2.0.2)


A new skin was also created that was based on MonoBook:
*A new skin was also created that was based on MonoBook (note all other skin options were removed to force use of this skin):
:openemr
::openemr


In order to support the 'openemr' skin, modifications were made in the wiki/includes/OutputPage.php script:
*In order to support the 'openemr' skin, modifications were made in the wiki/includes/OutputPage.php script:
:At line 2215:
::At line 2215:
<pre>
<pre>
                 # NEED TO ADD THE ID HERE (wiki vs download vs demo)
                 # NEED TO ADD THE ID HERE (wiki vs download vs demo)

Revision as of 20:55, 16 September 2011

  • This is based on mediwiki version 1.16.5 with following extensions:
Confirm user accounts
MultipleUpload (Version 2.0)
Password Reset (Version 1.7)
Google Analytics Integration (Version 2.0.2)
  • A new skin was also created that was based on MonoBook (note all other skin options were removed to force use of this skin):
openemr
  • In order to support the 'openemr' skin, modifications were made in the wiki/includes/OutputPage.php script:
At line 2215:
                # NEED TO ADD THE ID HERE (wiki vs download vs demo)
                # USE THE DOCUMENT TITLE
                if (Sanitizer::escapeClass($this->getTitle()->getPrefixedText()) == "Development_4_1_x_Demo") {
                    $bodyAttrs['id'] = 'demo';
                }
                else if (Sanitizer::escapeClass($this->getTitle()->getPrefixedText()) == "OpenEMR_Downloads") {
                    $bodyAttrs['id'] = 'download';
                }
                else {
                    $bodyAttrs['id'] = 'wiki';
                }