View Single Post
  #5  
Old 03-20-2014, 01:38 PM
 
taponitrof taponitrof is offline
 

Senior Member
  
Join Date: Dec 2007
Posts: 105
 

Default Re: Create Custom css file in 5.0.12

Here is main.php

Code:
<?php // vim: set ts=4 sw=4 sts=4 et: namespace XLite\Module\Wolf\CustomCss; /** * Module description * * @package XLite */ abstract class Main extends \XLite\Module\AModule { /** * Author name * * @return string */ public static function getAuthorName() { return 'WND'; } /** * Module name * * @return string */ public static function getModuleName() { return 'CustomCss'; } /** * Get module major version * * @return string */ public static function getMajorVersion() { return '5.0'; } /** * Module version * * @return string */ public static function getMinorVersion() { return 0; } /** * Module description * * @return string */ public static function getDescription() { return 'Custom css for template using last.css'; } }
__________________
X-Cart Version 4.1.10, 4.1.11, 4.2, 4.3, 4.4.5
Linux
Reply With Quote