类 FlashHelper
FlashHelper 类用于渲染闪存消息。
在控制器中使用 FlashComponent 设置消息后,您可以使用此类在视图中输出闪存消息。
属性摘要
-
$_View protected
Cake\View\View
此助手所附加的视图实例
-
$_config protected
array<string, mixed>
运行时配置
-
$_configInitialized protected
bool
配置属性是否已使用默认值配置
-
$_defaultConfig protected
array<string, mixed>
此助手的默认配置。
-
$helperInstances protected
array<string,Cake\View\Helper>
已加载的助手实例。
-
$helpers protected
array
此助手使用的助手列表
方法摘要
-
__construct() public
默认构造函数
-
__debugInfo() public
返回一个可用于描述此对象内部状态的数组。
-
__get() public
延迟加载助手。
-
_configDelete() protected
删除单个配置键。
-
_configRead() protected
读取配置键。
-
_configWrite() protected
写入配置键。
-
_confirm() protected
返回一个字符串,用作确认对话框的 onclick 处理程序。
-
addClass() public
将给定类添加到元素选项
-
configShallow() public
将提供的配置与现有配置合并。与
config()
对嵌套键进行递归合并不同,此方法执行简单合并。 -
getConfig() public
返回配置。
-
getConfigOrFail() public
返回此特定键的配置。
-
getView() public
获取此助手绑定的视图实例。
-
implementedEvents() public
事件监听器。
-
initialize() public
构造函数钩子方法。
-
render() public
用于渲染 FlashComponent::set() 中设置的消息
-
setConfig() public
设置配置。
方法详情
__construct() ¶ public
__construct(Cake\View\View $view, array<string, mixed> $config = [])
默认构造函数
参数
-
Cake\View\View
$view 此助手所附加的视图。
-
array<string, mixed>
$config optional 助手的配置设置。
__debugInfo() ¶ public
__debugInfo(): array<string, mixed>
返回一个可用于描述此对象内部状态的数组。
返回
array<string, mixed>
__get() ¶ public
__get(string $name): Cake\View\Helper|null
延迟加载助手。
参数
-
string
$name 正在访问的属性的名称。
返回
Cake\View\Helper|null
_configDelete() ¶ protected
_configDelete(string $key): void
删除单个配置键。
参数
-
string
$key 要删除的键。
返回
void
抛出
Cake\Core\Exception\CakeException
如果尝试覆盖现有配置
_configRead() ¶ protected
_configRead(string|null $key): mixed
读取配置键。
参数
-
string|null
$key 要读取的键。
返回
mixed
_configWrite() ¶ protected
_configWrite(array<string, mixed>|string $key, mixed $value, string|bool $merge = false): void
写入配置键。
参数
-
array<string, mixed>|string
$key 要写入的键。
-
mixed
$value 要写入的值。
-
string|bool
$merge optional True 表示递归合并,'shallow' 表示简单合并,false 表示覆盖,默认为 false。
返回
void
抛出
Cake\Core\Exception\CakeException
如果尝试覆盖现有配置
_confirm() ¶ protected
_confirm(string $okCode, string $cancelCode): string
返回一个字符串,用作确认对话框的 onclick 处理程序。
参数
-
string
$okCode 用户选择“确定”后要执行的代码
-
string
$cancelCode 用户选择“取消”后要执行的代码
返回
string
addClass() ¶ public
addClass(array<string, mixed> $options, string $class, string $key = 'class'): array<string, mixed>
将给定类添加到元素选项
参数
-
array<string, mixed>
$options 要添加类的数组选项/属性
-
string
$class 要添加的类名。
-
string
$key optional 要用于类的键。默认为
'class'
。
返回
array<string, mixed>
configShallow() ¶ public
configShallow(array<string, mixed>|string $key, mixed|null $value = null): $this
将提供的配置与现有配置合并。与 config()
对嵌套键进行递归合并不同,此方法执行简单合并。
设置特定值
$this->configShallow('key', $value);
设置嵌套值
$this->configShallow('some.nested.key', $value);
同时更新多个配置设置
$this->configShallow(['one' => 'value', 'another' => 'value']);
参数
-
array<string, mixed>|string
$key 要设置的键,或完整的配置数组。
-
mixed|null
$value optional 要设置的值。
返回
$this
getConfig() ¶ public
getConfig(string|null $key = null, mixed $default = null): mixed
返回配置。
用法
读取整个配置
$this->getConfig();
读取特定值
$this->getConfig('key');
读取嵌套值
$this->getConfig('some.nested.key');
使用默认值读取
$this->getConfig('some-key', 'default-value');
参数
-
string|null
$key optional 要获取的键,或整个配置的 null。
-
mixed
$default optional 键不存在时的返回值。
返回
mixed
getConfigOrFail() ¶ public
getConfigOrFail(string $key): mixed
返回此特定键的配置。
此键的配置值必须存在,不能为 null。
参数
-
string
$key 要获取的键。
返回
mixed
抛出
InvalidArgumentException
implementedEvents() ¶ public
implementedEvents(): array<string, mixed>
事件监听器。
通过定义其中一个回调方法,助手被假定对相关事件感兴趣。
如果您需要添加非传统事件监听器,请覆盖此方法。或者,如果您希望助手监听非标准事件。
返回
array<string, mixed>
initialize() ¶ public
initialize(array<string, mixed> $config): void
构造函数钩子方法。
实现此方法以避免覆盖构造函数并调用父类。
参数
-
array<string, mixed>
$config 提供给此帮助程序的配置设置。
返回
void
render() ¶ public
render(string $key = 'flash', array<string, mixed> $options = []): string|null
用于渲染 FlashComponent::set() 中设置的消息
在您的模板文件中:$this->Flash->render('somekey'); 如果没有传入参数,将默认为 flash
您可以将其他信息传入闪存消息生成。这使您能够将给定类型闪存消息的所有参数整合到视图中。
echo $this->Flash->render('flash', ['params' => ['name' => $user['User']['name']]]);
这将把当前用户的姓名传入闪存消息,以便您可以创建个性化消息,而无需控制器访问该数据。
最后,您可以选择用于呈现闪存消息的元素。使用自定义元素可以让您完全自定义闪存消息的生成方式。
echo $this->Flash->render('flash', ['element' => 'my_custom_element']);
如果您想使用插件中的元素来渲染闪存消息,可以使用插件元素名称的点符号表示法
echo $this->Flash->render('flash', [
'element' => 'MyPlugin.my_custom_element',
]);
如果您在 Session 中存储了多条消息,每条消息将在其自己的元素中渲染。
参数
-
string
$key optional 您在视图中渲染的 [Flash.]key。
-
array<string, mixed>
$options 可选 用于创建此闪存消息的其他选项。支持帮助程序中使用的“params”和“element”键。
返回
string|null
setConfig() ¶ public
setConfig(array<string, mixed>|string $key, mixed|null $value = null, bool $merge = true): $this
设置配置。
用法
设置特定值
$this->setConfig('key', $value);
设置嵌套值
$this->setConfig('some.nested.key', $value);
同时更新多个配置设置
$this->setConfig(['one' => 'value', 'another' => 'value']);
参数
-
array<string, mixed>|string
$key 要设置的键,或完整的配置数组。
-
mixed|null
$value optional 要设置的值。
-
bool
$merge 可选 是否递归合并或覆盖现有配置,默认为 true。
返回
$this
抛出
Cake\Core\Exception\CakeException
尝试设置无效键时。