Index: trunk/phase3/includes/ExternalUser.php |
— | — | @@ -18,6 +18,10 @@ |
19 | 19 | # http://www.gnu.org/copyleft/gpl.html |
20 | 20 | |
21 | 21 | /** |
| 22 | + * @defgroup ExternalUser ExternalUser |
| 23 | + */ |
| 24 | + |
| 25 | +/** |
22 | 26 | * A class intended to supplement, and perhaps eventually replace, AuthPlugin. |
23 | 27 | * See: http://www.mediawiki.org/wiki/ExternalAuth |
24 | 28 | * |
— | — | @@ -26,6 +30,8 @@ |
27 | 31 | * assumed to at least support the concept of a user id (possibly not an |
28 | 32 | * integer), a user name (possibly not meeting MediaWiki's username |
29 | 33 | * requirements), and a password. |
| 34 | + * |
| 35 | + * @ingroup ExternalUser |
30 | 36 | */ |
31 | 37 | abstract class ExternalUser { |
32 | 38 | protected function __construct() {} |
— | — | @@ -67,7 +73,6 @@ |
68 | 74 | } |
69 | 75 | |
70 | 76 | /** |
71 | | - * @param $cookie string |
72 | 77 | * @return mixed ExternalUser, or false on failure |
73 | 78 | */ |
74 | 79 | public static function newFromCookie() { |
Index: trunk/phase3/includes/extauth/Hardcoded.php |
— | — | @@ -31,6 +31,8 @@ |
32 | 32 | * |
33 | 33 | * Multiple names may be provided. The keys of the inner arrays can be either |
34 | 34 | * 'password', or the name of any preference. |
| 35 | + * |
| 36 | + * @ingroup ExternalUser |
35 | 37 | */ |
36 | 38 | class ExternalUser_Hardcoded extends ExternalUser { |
37 | 39 | private $mName; |
Index: trunk/phase3/includes/extauth/MediaWiki.php |
— | — | @@ -41,6 +41,8 @@ |
42 | 42 | * might fail unexpectedly unless they both do the exact same validation. |
43 | 43 | * There may be other corner cases like this where this will fail, but it |
44 | 44 | * should be unlikely. |
| 45 | + * |
| 46 | + * @ingroup ExternalUser |
45 | 47 | */ |
46 | 48 | class ExternalUser_MediaWiki extends ExternalUser { |
47 | 49 | private $mRow, $mDb; |
Index: trunk/phase3/includes/extauth/vB.php |
— | — | @@ -32,6 +32,8 @@ |
33 | 33 | * 'tableprefix' => '', |
34 | 34 | * 'cookieprefix' => 'bb' |
35 | 35 | * ); |
| 36 | + * |
| 37 | + * @ingroup ExternalUser |
36 | 38 | */ |
37 | 39 | class ExternalUser_vB extends ExternalUser { |
38 | 40 | private $mDb, $mRow; |