* @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com) * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) */ /** * Pasargad Bank Online payment method config * * @category Codnitive * @package Codnitive_Extifcon * @author Hassan Barza */ class Codnitive_Extifcon_Model_Config { const PATH_NAMESPACE = 'codnitiveadvance'; const EXTENSION_NAMESPACE = 'extifcon'; const EXTENSION_NAME = 'Extended ifconfig'; const EXTENSION_VERSION = '1.7.20'; const EXTENSION_EDITION = ''; public static function getNamespace() { return self::PATH_NAMESPACE . '/' . self::EXTENSION_NAMESPACE . '/'; } public function getExtensionName() { return self::EXTENSION_NAME; } public function getExtensionVersion() { return self::EXTENSION_VERSION; } public function getExtensionEdition() { return self::EXTENSION_EDITION; } }