commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / vendor / dompdf / dompdf / autoload.inc.php
1 <?php
2 /**
3 * @package dompdf
4 * @link http://dompdf.github.com/
5 * @author Benj Carson <benjcarson@digitaljunkies.ca>
6 * @author Fabien Ménager <fabien.menager@gmail.com>
7 * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
8 */
9
10 /**
11 * Dompdf autoload function
12 *
13 * If you have an existing autoload function, add a call to this function
14 * from your existing __autoload() implementation.
15 *
16 * @param string $class
17 */
18
19 require_once __DIR__ . '/lib/html5lib/Parser.php';
20 require_once __DIR__ . '/lib/php-font-lib/src/FontLib/Autoloader.php';
21 require_once __DIR__ . '/lib/php-svg-lib/src/autoload.php';
22
23 /*
24 * New PHP 5.3.0 namespaced autoloader
25 */
26 require_once __DIR__ . '/src/Autoloader.php';
27
28 Dompdf\Autoloader::register();