added possibility for special links on self service login

This commit is contained in:
Roland Gruber 2011-07-23 18:57:07 +00:00
parent 5c4237e689
commit 552761bbd6
1 changed files with 13 additions and 0 deletions

View File

@ -1321,6 +1321,19 @@ abstract class baseModule {
return true;
}
/**
* This allows modules to create a link to a module specific page
* for the self service.
* The link is shown on the login page of the self service. You
* can use this to provide e.g. a page to reset passwords.
*
* @param array $settings self service settings
* @return String link text (null if no special page used)
*/
public function getLinkToSpecialSelfServicePage($settings) {
return null;
}
/**
* Returns the {@link accountContainer} object.
*