我正在为MediaWiki编写自己的AuthPlugin,并引用正式提供的the doc和the code。关于域,有几个功能:
AuthPlugin::domainList()
// Get a list of domains (in HTMLForm options format) used.
AuthPlugin::getDomain()
// Get the user's domain.
AuthPlugin::setDomain($domain)
// Set the domain this plugin is supposed to use when authenticating.
但是,我不知道域是什么,应该怎么办? AuthPlugin扩展的作者希望它是什么,而不是在默认MW配置中具有任何意义吗?
最佳答案
这主要用于LDAP插件。如果您的身份验证系统没有可能需要从中选择多个域的概念,则无需担心。
关于php - MediaWiki中的AuthPlugin上下文中的 "domain"是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14098353/