getCssFilename signature added

This commit is contained in:
Thomas Gelf 2014-02-14 13:42:57 +00:00
parent 6b027a0dc3
commit cb923453c9

View File

@ -216,7 +216,7 @@ class Module
} }
/** /**
* Test if module provide css * Test if module provides css
* *
* @return bool * @return bool
*/ */
@ -225,6 +225,11 @@ class Module
return file_exists($this->getCssFilename()); return file_exists($this->getCssFilename());
} }
/**
* Returns the complete less file name
*
* @return string
*/
public function getCssFilename() public function getCssFilename()
{ {
return $this->cssdir . '/module.less'; return $this->cssdir . '/module.less';