From cb923453c992b7351c5459266052a3eda8300730 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 14 Feb 2014 13:42:57 +0000 Subject: [PATCH] getCssFilename signature added --- library/Icinga/Application/Modules/Module.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/library/Icinga/Application/Modules/Module.php b/library/Icinga/Application/Modules/Module.php index 521d73fb4..d1690ee7f 100644 --- a/library/Icinga/Application/Modules/Module.php +++ b/library/Icinga/Application/Modules/Module.php @@ -216,7 +216,7 @@ class Module } /** - * Test if module provide css + * Test if module provides css * * @return bool */ @@ -225,6 +225,11 @@ class Module return file_exists($this->getCssFilename()); } + /** + * Returns the complete less file name + * + * @return string + */ public function getCssFilename() { return $this->cssdir . '/module.less';