1234567891011121314151617181920212223 |
- <?php
- namespace Smartwave\Porto\Model\Config\Settings\General;
- class Layout implements \Magento\Framework\Option\ArrayInterface
- {
- public function toOptionArray()
- {
- return [
- ['value' => '1140', 'label' => __('1140px (Default)')],
- ['value' => '1280', 'label' => __('1280px')],
- ['value' => 'full_width', 'label' => __('Full Width')]
- ];
- }
- public function toArray()
- {
- return [
- '1140' => __('1140px (Default)'),
- '1280' => __('1280px'),
- 'full_width' => __('Full Width')
- ];
- }
- }
|