Difference between revisions of "Code Notes"
From OpenEMR Project Wiki
		| Line 7: | Line 7: | ||
<br>  | <br>  | ||
==Important Includes==  | ==Important Includes==  | ||
*  | *[OpenEMR Path]/interface/globals.php  | ||
::Establishes global functions & variables.    | ::Establishes global functions & variables.    | ||
*  | *[OpenEMR Path]/library/globals.inc.php  | ||
::Establishes global functions & variables.  If you include globals.php, this will be included as part of that.  | ::Establishes global functions & variables.  If you include globals.php, this will be included as part of that.  | ||
<br>  | <br>  | ||
*  | *[OpenEMR Path]/library/acl.inc  | ||
::Access control system.  Manages which users can control/see which features.  | ::Access control system.  Manages which users can control/see which features.  | ||
Revision as of 16:35, 15 May 2014
Overview
Important Includes
- [OpenEMR Path]/interface/globals.php
 
- Establishes global functions & variables.
 
- [OpenEMR Path]/library/globals.inc.php
 
- Establishes global functions & variables. If you include globals.php, this will be included as part of that.
 
- [OpenEMR Path]/library/acl.inc
 
- Access control system. Manages which users can control/see which features.
 
Important Functions
- function xl(<text>)
 
- Translates text to the language specified in global preferences. Use this for all text that will be displayed.
 - Declared in: /library/translation.inc.php
 - Included if you include: /library/globals.php
 
General How To