Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProductsByDimension.php « Widgets « Ecommerce « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f25e23b7673e8c04893dc87d05f227ca98ea70e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
 * Piwik - free/libre analytics platform
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 */
namespace Piwik\Plugins\Ecommerce\Widgets;

use Piwik\Common;
use Piwik\Plugins\CoreHome\CoreHome;
use Piwik\Site;
use Piwik\Widget\WidgetContainerConfig;

class ProductsByDimension extends WidgetContainerConfig
{
    protected $layout = CoreHome::WIDGET_CONTAINER_LAYOUT_BY_DIMENSION;
    protected $id = 'Products';
    protected $categoryId = 'Goals_Ecommerce';
    protected $subcategoryId = 'Goals_Products';

    public function isEnabled()
    {
        $idSite = Common::getRequestVar('idSite', false, 'int');

        if (empty($idSite)) {
            return false;
        }

        $site = new Site($idSite);
        return $site->isEcommerceEnabled();
    }
}