特征是与上下文无关的代码片段,可以在各种地方使用。他们将自己的方法添加到您自己的类中。因此,在开发扩展时,有时您需要与站点的当前用户合作:他是访客还是授权用户? 如果获得授权,属于哪个访问组?等等
从 Joomla 4.2 开始,CurrentUserTrait 交易出现在内核中,它将 2 个方法 getCurrentUser() 和 setCurrentUser() 添加到插件、助手等的类中。在底层的 getter (getCurrentUser()) 中,它检查当前用户是否已分配,如果没有,则从 Application 对象获取。
use Joomla\CMS\User\CurrentUserTrait; final class Wtcategory extends FieldsPlugin implements SubscriberInterface { use DatabaseAwareTrait; use CurrentUserTrait; public function MyMethod() { $user = $this->getCurrentUser(); } }
因此,您可以较少地监控该区域代码库的相关性,因为这里使用了核心功能。
以上是获取当前用户的对象 - Joomla 中的当前用户特征的详细内容。更多信息请关注PHP中文网其他相关文章!