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 ++++++++++++++++++++++++++++++++++++++++ app/Helper/AssetHelperHelper.php | 65 ---------------------------------------- 2 files changed, 65 insertions(+), 65 deletions(-) create mode 100644 app/Helper/AssetHelper.php delete mode 100644 app/Helper/AssetHelperHelper.php (limited to 'app') 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 ''; + } +} diff --git a/app/Helper/AssetHelperHelper.php b/app/Helper/AssetHelperHelper.php deleted file mode 100644 index b3dc711f..00000000 --- a/app/Helper/AssetHelperHelper.php +++ /dev/null @@ -1,65 +0,0 @@ -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