move openid instructions to OpenIDPlugin

This commit is contained in:
Evan Prodromou
2009-08-04 13:27:22 -04:00
parent 622c0b24c3
commit 5dc1291b59
3 changed files with 27 additions and 6 deletions

View File

@@ -171,4 +171,29 @@ class OpenIDPlugin extends Plugin
}
return true;
}
function onEndShowPageNotice($action)
{
$name = $action->trimmed('action');
switch ($name)
{
case 'register':
$instr = '(Have an [OpenID](http://openid.net/)? ' .
'Try our [OpenID registration]'.
'(%%action.openidlogin%%)!)';
break;
case 'login':
$instr = '(Have an [OpenID](http://openid.net/)? ' .
'Try our [OpenID login]'.
'(%%action.openidlogin%%)!)';
break;
default:
return true;
}
$output = common_markup_to_html($instr);
$action->raw($output);
return true;
}
}