forked from vergnet/site-accueil-insa
54 lines
1.3 KiB
PHP
54 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
namespace Piwik\Plugins\RssWidget;
|
|
use Piwik\Plugins\RssWidget\Widgets\RssChangelog;
|
|
use Piwik\Plugins\RssWidget\Widgets\RssPiwik;
|
|
use Piwik\SettingsPiwik;
|
|
use Piwik\Widget\WidgetsList;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
class RssWidget extends \Piwik\Plugin
|
|
{
|
|
/**
|
|
* @see \Piwik\Plugin::registerEvents
|
|
*/
|
|
public function registerEvents()
|
|
{
|
|
return array(
|
|
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
|
|
'Request.getRenamedModuleAndAction' => 'renameExampleRssWidgetModule',
|
|
'Widget.filterWidgets' => 'filterWidgets'
|
|
);
|
|
}
|
|
|
|
public function getStylesheetFiles(&$stylesheets)
|
|
{
|
|
$stylesheets[] = "plugins/RssWidget/stylesheets/rss.less";
|
|
}
|
|
|
|
public function renameExampleRssWidgetModule(&$module, &$action)
|
|
{
|
|
if ($module == 'ExampleRssWidget') {
|
|
$module = 'RssWidget';
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param WidgetsList $list
|
|
*/
|
|
public function filterWidgets($list)
|
|
{
|
|
if (!SettingsPiwik::isInternetEnabled()) {
|
|
$list->remove(RssChangelog::getCategory(), RssChangelog::getName());
|
|
$list->remove(RssPiwik::getCategory(), RssPiwik::getName());
|
|
}
|
|
}
|
|
}
|