Boxed.php 413 B

123456789101112131415
  1. <?php
  2. namespace Smartwave\Porto\Model\Config\Settings\General;
  3. class Boxed implements \Magento\Framework\Option\ArrayInterface
  4. {
  5. public function toOptionArray()
  6. {
  7. return [['value' => 'wide', 'label' => __('Wide (Default)')], ['value' => 'boxed', 'label' => __('Boxed')]];
  8. }
  9. public function toArray()
  10. {
  11. return ['wide' => __('Wide (Default)'), 'boxed' => __('Boxed')];
  12. }
  13. }