ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
inc.get_pear.php
Go to the documentation of this file.
1 <?php
2 
3 // First use local pear
4 set_include_path(
5  "./Services/PEAR/lib".PATH_SEPARATOR.
6  './Services/OpenId/lib'.PATH_SEPARATOR.
7  ini_get('include_path'));
8 // look for embedded pear
9 if (is_dir("./pear"))
10 {
11  set_include_path("./pear".PATH_SEPARATOR.ini_get('include_path'));
12 }
13 ?>