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:
authorThomas Steur <thomas.steur@gmail.com>2013-10-09 03:23:00 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-09 03:23:00 +0400
commit4b74c5c44d37c2269991b5a8dc185db0fc40136a (patch)
treede102c37ab299c57f374de08bad02cfdb49ade24 /core/AssetManager.php
parente74d67dd5a44b6bf66b7c9ef70f24e19959971e8 (diff)
refs #4199 updated some event docs and removed some more unused events
Diffstat (limited to 'core/AssetManager.php')
-rw-r--r--core/AssetManager.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/AssetManager.php b/core/AssetManager.php
index c75f9435a7..f199ce85fa 100644
--- a/core/AssetManager.php
+++ b/core/AssetManager.php
@@ -161,9 +161,9 @@ class AssetManager
$mergedContent = $less->compile($mergedContent);
/**
- * This event is triggered after the less stylesheets are compiled to CSS, minified and merged but before the
- * generated CSS is written to disk. It can be used to change the generated stylesheets to your needs,
- * like replacing image paths or adding further custom stylesheets.
+ * This event is triggered after the less stylesheets are compiled to CSS and after the CSS is minified and
+ * merged into one file but before the generated CSS is written to disk. It can be used to change the modify the
+ * stylesheets to your needs, like replacing image paths or adding further custom stylesheets.
*/
Piwik_PostEvent('AssetManager.filterMergedStylesheets', array(&$mergedContent));
@@ -286,9 +286,9 @@ class AssetManager
$stylesheets = array();
/**
- * This event is triggered to gather a list of all stylesheets (CSS and Less). Use this event to add your own
+ * This event is triggered to gather a list of all stylesheets (CSS and LESS). Use this event to add your own
* stylesheets. Note: In case you are in development you may enable the config setting `disable_merged_assets`.
- * Otherwise your custom stylesheets won't be loaded. It is best practice to place stylesheet files within a
+ * Otherwise your custom stylesheets won't be loaded. It is best practice to place stylesheets within a
* `stylesheets` folder.
*
* Example: