Changeset 1200
- Timestamp:
- 12/02/08 17:47:25 (1 month ago)
- Files:
-
- trunk/lib/jelix/auth/jAuth.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/auth/jAuth.class.php
r1079 r1200 57 57 58 58 /** 59 * loadthe auth driver59 * return the auth driver 60 60 * @return jIAuthDriver 61 61 */ … … 79 79 80 80 /** 81 * return the value of a parameter of the configuration of the current driver 82 * @param string $paramName 83 * @return string the value. null if it doesn't exist 84 */ 85 public static function getDriverParam($paramName) { 86 $config = self::_getConfig(); 87 $config = $config[$config['driver']]; 88 if(isset($config[$paramName])) 89 return $config[$paramName]; 90 else 91 return null; 92 } 93 94 /** 81 95 * load user data 82 96 *
