| [ Index ] |
PHP Cross Reference of Joomla 1.5.26 DE |
[Summary view] [Print] [Text view]
1 <?php 2 3 // Do not allow direct access 4 defined( '_JEXEC' ) or die( 'Restricted access' ); 5 6 $path_extra = dirname(__FILE__); 7 $path = ini_get('include_path'); 8 $path = $path_extra . DS . $path; 9 ini_set('include_path', $path); 10 11 12 /** 13 * Require the OpenID consumer code. 14 */ 15 require_once "Auth/OpenID/Consumer.php"; 16 17 /** 18 * Require the "file store" module, which we'll need to store 19 * OpenID information. 20 */ 21 require_once "Auth/OpenID/FileStore.php"; 22 23 /** 24 * Require the Simple Registration extension API. 25 */ 26 require_once "Auth/OpenID/SReg.php"; 27 28 /** 29 * Require the PAPE extension module. 30 */ 31 require_once "Auth/OpenID/PAPE.php"; 32
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Wed Mar 28 15:54:07 2012 | Cross-referenced by PHPXref 0.7.1 |