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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-09-06 07:32:43 +0400
committermattab <matthieu.aubry@gmail.com>2013-09-06 07:32:43 +0400
commitd91d0d861110f658c537c3103513d2a44f03d03b (patch)
tree610f0985bb91820f5f13368c03f8d6c5f650751d /plugins/SegmentEditor
parent6a9e2423fa588da3230148789ff20dcce5fc4e8d (diff)
* Renaming getCssFiles hook to getStylesheetFiles
* Renaming function names * Removing getCss and getJs from CoreHome module since they are expected in the Proxy module Refs #4134
Diffstat (limited to 'plugins/SegmentEditor')
-rw-r--r--plugins/SegmentEditor/SegmentEditor.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/SegmentEditor/SegmentEditor.php b/plugins/SegmentEditor/SegmentEditor.php
index 1c588a483d..8037d868e9 100644
--- a/plugins/SegmentEditor/SegmentEditor.php
+++ b/plugins/SegmentEditor/SegmentEditor.php
@@ -45,7 +45,7 @@ class SegmentEditor extends \Piwik\Plugin
'Piwik.getKnownSegmentsToArchiveForSite' => 'getKnownSegmentsToArchiveForSite',
'Piwik.getKnownSegmentsToArchiveAllSites' => 'getKnownSegmentsToArchiveAllSites',
'AssetManager.getJsFiles' => 'getJsFiles',
- 'AssetManager.getCssFiles' => 'getCssFiles',
+ 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
'template_nextToCalendar' => 'getSegmentEditorHtml',
);
}
@@ -105,8 +105,8 @@ class SegmentEditor extends \Piwik\Plugin
$jsFiles[] = "plugins/SegmentEditor/javascripts/Segmentation.js";
}
- public function getCssFiles(&$cssFiles)
+ public function getStylesheetFiles(&$stylesheets)
{
- $cssFiles[] = "plugins/SegmentEditor/stylesheets/segmentation.less";
+ $stylesheets[] = "plugins/SegmentEditor/stylesheets/segmentation.less";
}
}