array('addthis_above_showon_home', 'addthis_below_showon_home'), 'deprecated' => array('addthis_showonhome'), ), array( 'current' => array('addthis_above_showon_pages', 'addthis_below_showon_pages'), 'deprecated' => array('addthis_showonpages'), ), array( 'current' => array('addthis_above_showon_categories', 'addthis_below_showon_categories'), 'deprecated' => array('addthis_showoncats'), ), array( 'current' => array('addthis_above_showon_archives', 'addthis_below_showon_archives'), 'deprecated' => array('addthis_showonarchives'), ), array( 'current' => array('addthis_above_showon_posts', 'addthis_below_showon_posts'), 'deprecated' => array('addthis_showonposts'), ), ); static $deprecatedVariables = array( 'above_sharing', 'addthis_showonarchives', 'addthis_showoncats', 'addthis_showonhome', 'addthis_showonpages', 'addthis_showonposts', 'addthis_sidebar_only', 'below_sharing', 'show_above', 'show_below', ); static function getVersion() { return self::$version; } static function getDeprecatedVariables() { return self::$deprecatedVariables; } static function getSimpleConfigUpgradeMapping() { return self::$simpleConfigUpgradeMappings; } static function getName() { return self::$name; } static function getSettingsPageId() { return self::$settingsPageId; } static function getOldConfigVariableName() { return self::$oldConfigVariableName; } static function getConfigVariableName() { return self::$configVariableName; } static function getProductVersion() { $productVersion = self::$productPrefix . '-' . self::getVersion(); return $productVersion; } /** * the folder name for the AddThis plugin - OMG why is this hard coded?!? * @return string */ static function getPluginFolder(){ return 'addthis'; } } }