本文整理汇总了PHP中Magento\Framework\View\Page\Config::setMetadata方法的典型用法代码示例。如果您正苦于以下问题:PHP Config::setMetadata方法的具体用法?PHP Config::setMetadata怎么用?PHP Config::setMetadata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\View\Page\Config
的用法示例。
在下文中一共展示了Config::setMetadata方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: processMetadata
/**
* Process metadata
*
* @param \Magento\Framework\View\Page\Config\Structure $pageStructure
* @return $this
*/
protected function processMetadata(Structure $pageStructure)
{
foreach ($pageStructure->getMetadata() as $name => $content) {
$this->pageConfig->setMetadata($name, $content);
}
return $this;
}
示例2: testMetadata
public function testMetadata()
{
$expectedMetadata = ['charset' => null, 'media_type' => null, 'content_type' => null, 'description' => null, 'keywords' => null, 'robots' => null, 'name' => 'test_value', 'html_encoded' => '<title><span class="test">Test</span></title>'];
$this->model->setMetadata('name', 'test_value');
$this->model->setMetadata('html_encoded', '<title><span class="test">Test</span></title>');
$this->assertEquals($expectedMetadata, $this->model->getMetadata());
}
示例3: setMetadata
/**
* {@inheritdoc}
*/
public function setMetadata($name, $content)
{
$pluginInfo = $this->pluginList->getNext($this->subjectType, 'setMetadata');
if (!$pluginInfo) {
return parent::setMetadata($name, $content);
} else {
return $this->___callPlugins('setMetadata', func_get_args(), $pluginInfo);
}
}
示例4: testMetadata
public function testMetadata()
{
$expectedMetadata = [
'charset' => null,
'media_type' => null,
'content_type' => null,
'description' => null,
'keywords' => null,
'robots' => null,
'name' => 'test_value',
];
$this->model->setMetadata('name', 'test_value');
$this->assertEquals($expectedMetadata, $this->model->getMetadata());
}