Layout.php 600 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Smartwave\Porto\Model\Config\Settings\General;
  3. class Layout implements \Magento\Framework\Option\ArrayInterface
  4. {
  5. public function toOptionArray()
  6. {
  7. return [
  8. ['value' => '1140', 'label' => __('1140px (Default)')],
  9. ['value' => '1280', 'label' => __('1280px')],
  10. ['value' => 'full_width', 'label' => __('Full Width')]
  11. ];
  12. }
  13. public function toArray()
  14. {
  15. return [
  16. '1140' => __('1140px (Default)'),
  17. '1280' => __('1280px'),
  18. 'full_width' => __('Full Width')
  19. ];
  20. }
  21. }