Skip to content

Commit 0fb22e3

Browse files
committed
Create appLayoutPage.php
1 parent 323d06a commit 0fb22e3

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

appLayoutPage.php

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<?php
2+
3+
// Update layout in new version magento 2.3.4 or last
4+
5+
ini_set('display_startup_errors', 1);ini_set('display_errors', 1); error_reporting(-1);
6+
use Magento\Theme\Model\Theme\Collection;
7+
use Magento\Framework\App\Area;
8+
9+
require dirname(__FILE__) . '/app/bootstrap.php';
10+
$bootstrap = \Magento\Framework\App\Bootstrap::create(BP, $_SERVER);
11+
12+
class Outslide extends \Magento\Framework\App\Http
13+
implements \Magento\Framework\AppInterface {
14+
public function launch()
15+
{
16+
17+
$pageId = 19; // Id of page
18+
$model = $this->_objectManager->create('Magento\Cms\Model\Page');
19+
$model->load($pageId); // Id of page
20+
$pageData = [
21+
// 'title' => "title page",
22+
// 'page_layout' => "page_layout type",
23+
// 'identifier' => "identifier",
24+
// 'content_heading' => "content_heading text",
25+
// 'content' => "Content Text",
26+
'layout_update_xml' => '<!-- Slide showcase-->
27+
<referenceContainer name="slide.showcase">
28+
<block class="Magento\Cms\Block\Block" name="slide">
29+
<arguments>
30+
<argument name="block_id" xsi:type="string">static-home-slide</argument>
31+
</arguments>
32+
</block>
33+
</referenceContainer>
34+
<!-- alo sectionsbottom-->
35+
<referenceContainer name="alo.sectionsbottom">
36+
<block class="Magento\Cms\Block\Block" name="static_sections_bottom">
37+
<arguments>
38+
<argument name="block_id" xsi:type="string">static_sections_bottom</argument>
39+
</arguments>
40+
</block>
41+
</referenceContainer>',
42+
'is_active' => 1
43+
];
44+
$model->addData( $pageData )->save();
45+
46+
echo 'Done update layout page';
47+
48+
49+
//the method must end with this line
50+
return $this->_response;
51+
}
52+
53+
}
54+
55+
/** @var \Magento\Framework\App\Http $app */
56+
$app = $bootstrap->createApplication('Outslide');
57+
$bootstrap->run($app);

0 commit comments

Comments
 (0)