DIR:/home/htlwork.com/www/awesomecandy/vendor/magento/module-wishlist/Model/Config/Source/ |
Current File : //home/htlwork.com/www/awesomecandy/vendor/magento/module-wishlist/Model/Config/Source/Summary.php |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Wishlist\Model\Config\Source; class Summary implements \Magento\Framework\Option\ArrayInterface { /** * @return array */ public function toOptionArray() { return [ ['value' => 0, 'label' => __('Display number of items in wish list')], ['value' => 1, 'label' => __('Display item quantities')] ]; } } |