List.php
93 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * ====================================================================== |
| 5 | * LICENSE: This file is subject to the terms and conditions defined in * |
| 6 | * file 'license.txt', which is part of this source code package. * |
| 7 | * ====================================================================== |
| 8 | */ |
| 9 | |
| 10 | class AAM_Extension_List { |
| 11 | |
| 12 | /** |
| 13 | * |
| 14 | * @return type |
| 15 | */ |
| 16 | public static function get() { |
| 17 | return array( |
| 18 | 'AAM_COMPLETE_PACKAGE' => array( |
| 19 | 'title' => 'Complete Package', |
| 20 | 'id' => 'AAM_COMPLETE_PACKAGE', |
| 21 | 'type' => 'commercial', |
| 22 | 'description' => 'Get the complete list of all available premium extensions in one package. Any new premium extensions in the future will be available with updates for no additional cost.', |
| 23 | 'url' => 'https://aamplugin.com/complete-package', |
| 24 | 'version' => (defined('AAM_COMPLETE_PACKAGE') ? constant('AAM_COMPLETE_PACKAGE') : null) |
| 25 | ), |
| 26 | 'AAM_PLUS_PACKAGE' => array( |
| 27 | 'title' => 'Plus Package', |
| 28 | 'id' => 'AAM_PLUS_PACKAGE', |
| 29 | 'type' => 'commercial', |
| 30 | 'description' => 'The best selling extension that has the most advanced content management features for WordPress CMS. Manage accsss to any post, page, custom post type, category, custom hierarchical taxonomy or define the default access to all.', |
| 31 | 'url' => 'https://aamplugin.com/extension/plus-package', |
| 32 | 'version' => (defined('AAM_PLUS_PACKAGE') ? constant('AAM_PLUS_PACKAGE') : null) |
| 33 | ), |
| 34 | 'AAM_IP_CHECK' => array( |
| 35 | 'title' => 'IP Check', |
| 36 | 'id' => 'AAM_IP_CHECK', |
| 37 | 'type' => 'commercial', |
| 38 | 'description' => 'This extension was designed to manage access to your entire website based on visitor\'s geo-location, refered host or IP address.', |
| 39 | 'url' => 'https://aamplugin.com/extension/ip-check', |
| 40 | 'version' => (defined('AAM_IP_CHECK') ? constant('AAM_IP_CHECK') : null) |
| 41 | ), |
| 42 | 'AAM_ROLE_HIERARCHY' => array( |
| 43 | 'title' => 'Role Hierarchy', |
| 44 | 'id' => 'AAM_ROLE_HIERARCHY', |
| 45 | 'type' => 'commercial', |
| 46 | 'description' => 'This extension alters default WordPress linear role system and give you the ability to create complex role hierarchy tree where all access settings are automatically inherited from parent roles.', |
| 47 | 'url' => 'https://aamplugin.com/extension/role-hierarchy', |
| 48 | 'version' => (defined('AAM_ROLE_HIERARCHY') ? constant('AAM_ROLE_HIERARCHY') : null) |
| 49 | ), |
| 50 | 'AAM_ECOMMERCE' => array( |
| 51 | 'title' => 'E-Commerce', |
| 52 | 'id' => 'AAM_ECOMMERCE', |
| 53 | 'type' => 'commercial', |
| 54 | 'new' => true, |
| 55 | 'description' => 'Start selling access to your website content. This extension gives ability to define the list of E-Commerce products that you can bind with any content on your website. The properly configured AAM Payment widget allows any authenticated user to purchase access with credit/debig card or PayPal. Braintree and Stripe gateways are used to handle actual purchase.', |
| 56 | 'url' => 'https://aamplugin.com/extension/ecommerce', |
| 57 | 'version' => (defined('AAM_ECOMMERCE') ? constant('AAM_ECOMMERCE') : null) |
| 58 | ), |
| 59 | 'AAM_PAYMENT' => array( |
| 60 | 'title' => 'Payment', |
| 61 | 'id' => 'AAM_PAYMENT', |
| 62 | 'type' => 'commercial', |
| 63 | 'description' => AAM_Backend_View_Helper::preparePhrase('[Deprecated!]. The extension is deprecated and replaces with more sophisticated E-Commerce extension. If you already purchased it, please contact us to upgrade your license for no additional cost.', 'b'), |
| 64 | 'url' => 'https://aamplugin.com/extension/ecommerce', |
| 65 | 'version' => (defined('AAM_PAYMENT') ? constant('AAM_PAYMENT') : null) |
| 66 | ), |
| 67 | 'AAM_MULTISITE' => array( |
| 68 | 'title' => 'Multisite', |
| 69 | 'id' => 'AAM_MULTISITE', |
| 70 | 'type' => 'GNU', |
| 71 | 'license' => 'AAMMULTISITE', |
| 72 | 'description' => 'Convenient way to navigate between different sites in the Network Admin Panel.', |
| 73 | 'version' => (defined('AAM_MULTISITE') ? constant('AAM_MULTISITE') : null) |
| 74 | ), |
| 75 | 'AAM_CONFIGPRESS' => array( |
| 76 | 'title' => 'ConfigPress', |
| 77 | 'id' => 'AAM_CONFIGPRESS', |
| 78 | 'type' => 'GNU', |
| 79 | 'license' => 'AAMCONFIGPRESS', |
| 80 | 'description' => 'Extension to manage AAM core functionality with advanced configuration settings.', |
| 81 | 'version' => (defined('AAM_CONFIGPRESS') ? constant('AAM_CONFIGPRESS') : null) |
| 82 | ), |
| 83 | 'AAM_USER_ACTIVITY' => array( |
| 84 | 'title' => 'User Activities', |
| 85 | 'id' => 'AAM_USER_ACTIVITY', |
| 86 | 'type' => 'GNU', |
| 87 | 'license' => 'AAMUSERACTIVITY', |
| 88 | 'description' => 'Track any kind of user or visitor activity on your website. <a href="https://aamplugin.com/help/how-to-track-any-wordpress-user-activity" target="_blank">Read more.</a>', |
| 89 | 'version' => (defined('AAM_USER_ACTIVITY') ? constant('AAM_USER_ACTIVITY') : null) |
| 90 | ), |
| 91 | ); |
| 92 | } |
| 93 | } |