From 552761bbd61869485e11d51e711963a98b26c174 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 23 Jul 2011 18:57:07 +0000 Subject: [PATCH] added possibility for special links on self service login --- lam/lib/baseModule.inc | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lam/lib/baseModule.inc b/lam/lib/baseModule.inc index 5fadef9a..c6b22984 100644 --- a/lam/lib/baseModule.inc +++ b/lam/lib/baseModule.inc @@ -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. *