meta data for this page
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
documentation:errors:adminauthchange [2015/12/06 14:27] – phplist | documentation:errors:adminauthchange [2015/12/07 08:18] (current) – phplist | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | |||
+ | ====== Admin auth change ====== | ||
+ | |||
+ | The admin authentication has changed. If you used to implement your own admin authentication with the class in the " | ||
+ | |||
+ | All you need to do is create a new plugin and paste your authentication methods to the plugin. Then set the " | ||
+ | |||
+ | < | ||
+ | class myCustomPhpListAdminAuthentication extends phplistPlugin { | ||
+ | public $name = 'your plugin name'; | ||
+ | public $version = 0.1; | ||
+ | public $authors = 'Your name'; | ||
+ | public $description = ' | ||
+ | public $authProvider = true; | ||
+ | |||
+ | |||
+ | [...] | ||
+ | paste the code from your admin_auth module here | ||
+ | | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | |||
+ | Then put the plugin in your plugins folder and it will be used for authentication. | ||
+ | |||
+ | See also [[develop/ | ||