Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/view/base/web/js/product/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/view/base/web/js/product/learn-more.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
define([
    'Magento_Ui/js/grid/columns/column',
    'Magento_Catalog/js/product/list/column-status-validator'
], function (Column, columnStatusValidator) {
    'use strict';

    return Column.extend({
        /**
         * Depends on this option, "Learn More" link can be shown or hide. Depends on  backend configuration
         *
         * @returns {Boolean}
         */
        isAllowed: function () {
            return columnStatusValidator.isValid(this.source(), 'learn_more', 'show_attributes');
        }
    });
});