quick minor path updates (#1968)
[openemr.git] / interface / super / rules / include / header.php
blob2a26450584b5e4f599fd6cf5370de2d6525b34f9
1 <?php
2 // Copyright (C) 2010-2011 Aron Racho <aron@mi-squred.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
10 require("../../globals.php");
12 require_once("ui.php");
13 require_once("common.php");
15 // recursively require all .php files in the base library folder
16 foreach (glob(base_dir() . "base/library/*.php") as $filename) {
17 require_once($filename);
20 // recursively require all .php files in the application library folder
21 foreach (glob(library_dir() . "/*.php") as $filename) {
22 require_once($filename);