Devo aggiungere un blocco CMS tramite uno script di installazione / aggiornamento. Ho già capito come aggiungere pagine CMS "normali" come si vede nello script qui sotto. Ma dal momento che non riesco a trovare alcun modo per aggiungere blocchi CMS nel codice di Magento 2, su Google o qui, sono abbastanza bloccato.
namespace [Vendor]\[Module]\Setup;
use Magento\Cms\Model\Page;
use Magento\Cms\Model\PageFactory;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;
use Magento\Framework\Setup\UpgradeDataInterface;
class UpgradeData implements UpgradeDataInterface
{
/**
* Page factory.
*
* @var PageFactory
*/
private $pageFactory;
/**
* Init.
*
* @param PageFactory $pageFactory
*/
public function __construct(PageFactory $pageFactory)
{
$this->pageFactory = $pageFactory;
}
/**
* Upgrade.
*
* @param ModuleDataSetupInterface $setup
* @param ModuleContextInterface $context
*/
public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
$setup->startSetup();
if (version_compare($context->getVersion(), '0.0.1') < 0) {
$testPage = [
'title' => 'Test page title',
'identifier' => 'test-page',
'stores' => [0],
'is_active' => 1,
'content_heading' => 'Test page heading',
'content' => 'Test page content',
'page_layout' => '1column'
];
$this->pageFactory->create()->setData($testPage)->save();
}
$setup->endSetup();
}
}
Capisco che non ho bisogno di tutti i valori definiti $testPage
nell'array, quindi l'ho ridotto a quanto segue:
$testPage = [
'title' => 'Test block title',
'identifier' => 'test-block',
'stores' => [0],
'is_active' => 1
'content' => 'Test block content'
];
Qualcuno sa cosa devo modificare per trasformare questa pagina di test in un blocco di test?
Nota: ho basato il mio script sullo script di dati di installazione nel modulo CMS Magento 2 situato in vendor/magento/module-cms/Setup/InstallData.php
.