SessionAwareWebApplicationTrait

帮助在 Web 应用程序类中实现 `Joomla\Application\SessionAwareWebApplicationInterface` 的特征。

2.0.0

Joomla 框架

方法

checkToken

检查请求中的表单令牌。

checkToken( method = 'post') : 

2.0.0

参数

方法

string要查找令牌键的请求方法。

响应

bool

getFormToken

用于确定防欺骗变量名称哈希的方法

getFormToken( forceNew = false) : 

2.0.0

参数

forceNew

bool如果为真,则强制创建新的令牌

响应

string哈希的变量名称

getInput

用于获取应用程序输入对象的方法。

getInput() : \Joomla\Input\Input
抽象

2.0.0

响应

输入

getSession

用于获取应用程序会话对象的方法。

getSession() : \Joomla\Session\SessionInterface

2.0.0

响应

SessionInterface会话对象

setSession

设置应用程序要使用的会话,如果需要。

setSession(\Joomla\Session\SessionInterface session) : 

2.0.0

参数

session

SessionInterface会话对象。

响应

$this

属性

session

应用程序会话对象。

2.0.0

类型

SessionInterface