From 6c25651e4bf3aba7609d028fc60ef06e79c523dc Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Thu, 10 Mar 2016 19:47:48 -0500 Subject: Rename badly named file after a refactoring --- app/Helper/AssetHelper.php | 65 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 app/Helper/AssetHelper.php (limited to 'app/Helper/AssetHelper.php') diff --git a/app/Helper/AssetHelper.php b/app/Helper/AssetHelper.php new file mode 100644 index 00000000..b3dc711f --- /dev/null +++ b/app/Helper/AssetHelper.php @@ -0,0 +1,65 @@ +helper->url->dir().$filename.'?'.filemtime($filename).'">'; + } + + /** + * Add a stylesheet asset + * + * @param string $filename Filename + * @param boolean $is_file Add file timestamp + * @param string $media Media + * @return string + */ + public function css($filename, $is_file = true, $media = 'screen') + { + return ''; + } + + /** + * Get custom css + * + * @access public + * @return string + */ + public function customCss() + { + if ($this->config->get('application_stylesheet')) { + return ''; + } + + return ''; + } + + /** + * Get CSS for task colors + * + * @access public + * @return string + */ + public function colorCss() + { + return ''; + } +} -- cgit v1.2.3