* @copyright Copyright (c) 2014 Novick Design. All rights reserved * @license http://next.x-cart.com/software-license-agreement.html X-Cart Next License Agreement * @link http://www.novickdesign.com */ namespace XLite\Module\Alinc\AlincTheme; /** * Skin customization module * */ abstract class Main extends \XLite\Module\AModule { /** * Author name * * @return string */ public static function getAuthorName() { return 'Mark Novick'; } /** * Module name * * @return string */ public static function getModuleName() { return 'Alinc Theme'; } /** * Get module major version * * @return string */ public static function getMajorVersion() { return '5.0'; } /** * Module version * * @return string */ public static function getMinorVersion() { return '12'; } /** * Return link to the module author page * * @return string */ public static function getAuthorPageURL() { return 'www.novickdesign.com'; } /** * Module description * * @return string */ public static function getDescription() { return 'Alinc Custom Theme'; } /** * Register the module skins. * * @return array */ public static function getSkins() { return array( \XLite::CUSTOMER_INTERFACE => array( 'AlincTheme/customer', ), ); } }