Changeset 33400
- Timestamp:
- 04/09/12 19:40:31 (1 year ago)
- Files:
-
- plugins/dcSamlPlugin/lib/saml/CustomSamlResponse.class.php (modified) (1 diff)
- plugins/dcSamlPlugin/lib/saml/SamlAgent.class.php (modified) (5 diffs)
- plugins/dcSamlPlugin/lib/saml/SamlUser.class.php (modified) (1 diff)
- plugins/dcSamlPlugin/modules/dcSamlAuth/lib/BasedcSamlAuthActions.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/dcSamlPlugin/lib/saml/CustomSamlResponse.class.php
r33399 r33400 38 38 } 39 39 40 /** 41 * Return the attribute value in the xaml file 42 * 43 * @param string $attr 44 * @return string 45 */ 40 46 private function get_attribute($attr) 41 47 { plugins/dcSamlPlugin/lib/saml/SamlAgent.class.php
r33399 r33400 251 251 } 252 252 253 /** 254 * Return the context user 255 * 256 * @return sfSecurityUser 257 * 258 * @access private 259 */ 253 260 private function getUser() 254 261 { … … 256 263 } 257 264 265 /** 266 * Return the actual saml session 267 * 268 * @return CustomSamlResponse 269 * 270 * @access public 271 */ 258 272 public function getSession() 259 273 { … … 261 275 } 262 276 277 /** 278 * Set the Saml response in the session 279 * @param sfWebRequest $request 280 */ 263 281 public function setSession(sfWebRequest $request) 264 282 { … … 266 284 } 267 285 286 /** 287 * Delete the actual saml response session 288 */ 268 289 public function deleteSession() 269 290 { … … 271 292 } 272 293 294 /** 295 * Return the user in saml response session 296 * 297 * @return SamlUser 298 */ 273 299 public function getUserInSession() 274 300 { plugins/dcSamlPlugin/lib/saml/SamlUser.class.php
r33399 r33400 101 101 } 102 102 103 /** 104 * Return the parsed permission name 105 * 106 * @param string $name 107 * @return string 108 */ 103 109 private function getPermissionName($name) 104 110 { plugins/dcSamlPlugin/modules/dcSamlAuth/lib/BasedcSamlAuthActions.class.php
r33399 r33400 87 87 } 88 88 89 /** 90 * Load the needed helpers 91 */ 89 92 private function loadHelpers() 90 93 {