Changeset 3206863
- Timestamp:
- 12/12/2024 10:32:23 AM (16 months ago)
- Location:
- panelhelper
- Files:
-
- 1 added
- 3 edited
- 25 copied
-
tags/2.2.0 (added)
-
tags/2.2.0/LICENSE (copied) (copied from panelhelper/trunk/LICENSE)
-
tags/2.2.0/assets (copied) (copied from panelhelper/trunk/assets)
-
tags/2.2.0/assets/css/admin.css (copied) (copied from panelhelper/trunk/assets/css/admin.css)
-
tags/2.2.0/assets/images/chart-mv-blue.png (copied) (copied from panelhelper/trunk/assets/images/chart-mv-blue.png)
-
tags/2.2.0/assets/images/chart-mv-red.png (copied) (copied from panelhelper/trunk/assets/images/chart-mv-red.png)
-
tags/2.2.0/assets/screenshot-2.png (copied) (copied from panelhelper/trunk/assets/screenshot-2.png)
-
tags/2.2.0/assets/screenshot-3.png (copied) (copied from panelhelper/trunk/assets/screenshot-3.png)
-
tags/2.2.0/assets/screenshot-4.png (copied) (copied from panelhelper/trunk/assets/screenshot-4.png)
-
tags/2.2.0/composer.json (copied) (copied from panelhelper/trunk/composer.json)
-
tags/2.2.0/includes (copied) (copied from panelhelper/trunk/includes)
-
tags/2.2.0/includes/admin/class-panelhelper-api-dashboard.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-dashboard.php)
-
tags/2.2.0/includes/admin/class-panelhelper-api-emails.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-emails.php)
-
tags/2.2.0/includes/admin/class-panelhelper-api-functions.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-functions.php)
-
tags/2.2.0/includes/admin/class-panelhelper-api-orders.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-orders.php)
-
tags/2.2.0/includes/admin/class-panelhelper-api-servers.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-servers.php) (1 diff)
-
tags/2.2.0/includes/admin/class-panelhelper-api-services.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-api-services.php)
-
tags/2.2.0/includes/admin/class-panelhelper-support-functions.php (copied) (copied from panelhelper/trunk/includes/admin/class-panelhelper-support-functions.php)
-
tags/2.2.0/includes/class-panelhelper-settings.php (copied) (copied from panelhelper/trunk/includes/class-panelhelper-settings.php)
-
tags/2.2.0/includes/integration/class-functions-hooks-integration-woocommerce.php (copied) (copied from panelhelper/trunk/includes/integration/class-functions-hooks-integration-woocommerce.php)
-
tags/2.2.0/index.php (copied) (copied from panelhelper/trunk/index.php)
-
tags/2.2.0/init.php (copied) (copied from panelhelper/trunk/init.php)
-
tags/2.2.0/lang (copied) (copied from panelhelper/trunk/lang)
-
tags/2.2.0/panelhelper.php (copied) (copied from panelhelper/trunk/panelhelper.php) (3 diffs)
-
tags/2.2.0/readme.txt (copied) (copied from panelhelper/trunk/readme.txt) (2 diffs)
-
tags/2.2.0/uninstall.php (copied) (copied from panelhelper/trunk/uninstall.php)
-
trunk/includes/admin/class-panelhelper-api-servers.php (modified) (1 diff)
-
trunk/panelhelper.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
panelhelper/tags/2.2.0/includes/admin/class-panelhelper-api-servers.php
r3158938 r3206863 166 166 <form method="post"> 167 167 <label for="APINAME">API URL</label> <br> 168 <input type="text" id="APINAME" name="APINAME" value="<?php echo esc_attr($main_server->API_URL); ?>" required><br><br> 168 <input type="text" id="APINAME" name="APINAME" value="<?php echo isset($main_server) ? esc_attr($main_server->API_URL) : ''; ?>" required><br><br> 169 169 170 170 171 <label for="APIKEYNAME">Key</label> <br> 171 <input type="text" id="APIKEYNAME" name="APIKEYNAME" value="<?php echo esc_attr($main_server->API_KEY); ?>" required><br><br> 172 <input type="text" id="APIKEYNAME" name="APIKEYNAME" value="<?php echo isset($main_server) ? esc_attr($main_server->API_KEY) : ''; ?>" required><br><br> 173 172 174 173 175 <button type="submit" class="button-submit" name="submit_button">Save</button> -
panelhelper/tags/2.2.0/panelhelper.php
r3158938 r3206863 2 2 /** 3 3 * Plugin Name: Panelhelper - SMM Panel API tool 4 * Version: 2. 1.04 * Version: 2.2.0 5 5 * Description: Integrate your SMM panel API to your wordpress store. 6 6 * Author: Appalify 7 7 * Author URI: https://appalify.com/panelhelper/ 8 8 * Requires at least: 4.0 9 * Tested up to: 6. 6.29 * Tested up to: 6.5.3 10 10 * 11 11 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 31 31 require_once 'includes/lib/class-panelhelper-post-type.php'; 32 32 require_once 'includes/lib/class-panelhelper-taxonomy.php'; 33 34 add_action( 'before_woocommerce_init', function() { 35 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 36 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 37 } 38 } ); 33 39 34 40 function panelhelper_update_database() { … … 80 86 */ 81 87 function panelhelper() { 82 $instance = panelhelper::instance( __FILE__, '2. 1.0' );88 $instance = panelhelper::instance( __FILE__, '2.2.0' ); 83 89 84 90 if ( is_null( $instance->settings ) ) { -
panelhelper/tags/2.2.0/readme.txt
r3158938 r3206863 3 3 Tags: smm panel api, API, SMM Panel, SMM Services, SMM panel wordpress plugin 4 4 Requires at least: 3.9 5 Tested up to: 6. 6.26 Stable tag: 2. 1.05 Tested up to: 6.7.1 6 Stable tag: 2.2.0 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 99 99 100 100 101 = 2.2.0 = 102 * 2024-12-12 103 * add smm panel error fixed 104 * HPOS error fixed 105 101 106 = 2.1.0 = 102 107 * 2024-09-27 -
panelhelper/trunk/includes/admin/class-panelhelper-api-servers.php
r3158938 r3206863 166 166 <form method="post"> 167 167 <label for="APINAME">API URL</label> <br> 168 <input type="text" id="APINAME" name="APINAME" value="<?php echo esc_attr($main_server->API_URL); ?>" required><br><br> 168 <input type="text" id="APINAME" name="APINAME" value="<?php echo isset($main_server) ? esc_attr($main_server->API_URL) : ''; ?>" required><br><br> 169 169 170 170 171 <label for="APIKEYNAME">Key</label> <br> 171 <input type="text" id="APIKEYNAME" name="APIKEYNAME" value="<?php echo esc_attr($main_server->API_KEY); ?>" required><br><br> 172 <input type="text" id="APIKEYNAME" name="APIKEYNAME" value="<?php echo isset($main_server) ? esc_attr($main_server->API_KEY) : ''; ?>" required><br><br> 173 172 174 173 175 <button type="submit" class="button-submit" name="submit_button">Save</button> -
panelhelper/trunk/panelhelper.php
r3158938 r3206863 2 2 /** 3 3 * Plugin Name: Panelhelper - SMM Panel API tool 4 * Version: 2. 1.04 * Version: 2.2.0 5 5 * Description: Integrate your SMM panel API to your wordpress store. 6 6 * Author: Appalify 7 7 * Author URI: https://appalify.com/panelhelper/ 8 8 * Requires at least: 4.0 9 * Tested up to: 6. 6.29 * Tested up to: 6.5.3 10 10 * 11 11 * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html … … 31 31 require_once 'includes/lib/class-panelhelper-post-type.php'; 32 32 require_once 'includes/lib/class-panelhelper-taxonomy.php'; 33 34 add_action( 'before_woocommerce_init', function() { 35 if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) { 36 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true ); 37 } 38 } ); 33 39 34 40 function panelhelper_update_database() { … … 80 86 */ 81 87 function panelhelper() { 82 $instance = panelhelper::instance( __FILE__, '2. 1.0' );88 $instance = panelhelper::instance( __FILE__, '2.2.0' ); 83 89 84 90 if ( is_null( $instance->settings ) ) { -
panelhelper/trunk/readme.txt
r3158938 r3206863 3 3 Tags: smm panel api, API, SMM Panel, SMM Services, SMM panel wordpress plugin 4 4 Requires at least: 3.9 5 Tested up to: 6. 6.26 Stable tag: 2. 1.05 Tested up to: 6.7.1 6 Stable tag: 2.2.0 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 99 99 100 100 101 = 2.2.0 = 102 * 2024-12-12 103 * add smm panel error fixed 104 * HPOS error fixed 105 101 106 = 2.1.0 = 102 107 * 2024-09-27
Note: See TracChangeset
for help on using the changeset viewer.