![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/app/code/Smartwave/Porto/Model/Config/Settings/Page/ |
<?php namespace Smartwave\Porto\Model\Config\Settings\Page; class Layout implements \Magento\Framework\Option\ArrayInterface { public function toOptionArray() { return [['value' => '1column', 'label' => __('1 Column')], ['value' => '2columns-left', 'label' => __('2 Columns with Left Sidebar')], ['value' => '2columns-right', 'label' => __('2 Columns with Right Sidebar')], ['value' => '3columns', 'label' => __('3 Columns')]]; } public function toArray() { return ['1column' => __('1 Column'), '2columns-left' => __('2 Columns with Left Sidebar'), '2columns-right' => __('2 Columns with Right Sidebar'), '3columns' => __('3 Columns')]; } }