DIR:/home/htlwork.com/www/dev/magento/vendor/magento/module-catalog/Model/Config/Source/ |
Current File : /home/htlwork.com/www/dev/magento/vendor/magento/module-catalog/Model/Config/Source/TimeFormat.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Catalog\Model\Config\Source; class TimeFormat implements \Magento\Framework\Option\ArrayInterface { /** * {@inheritdoc} * * @codeCoverageIgnore */ public function toOptionArray() { return [ ['value' => '12h', 'label' => __('12h AM/PM')], ['value' => '24h', 'label' => __('24h')] ]; } } |