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

Controller.php « Provider « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c51d7ccf4a477b514e0670779d7481446da3c515 (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
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik_Plugins
 * @package Piwik_Provider
 */
use Piwik\Controller;
use Piwik\ViewDataTable;

/**
 *
 * @package Piwik_Provider
 */
class Piwik_Provider_Controller extends Controller
{
    /**
     * Provider
     * @param bool $fetch
     * @return string|void
     */
    public function getProvider($fetch = false)
    {
        return ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
    }
}