Changeset 2152916
- Timestamp:
- 09/08/2019 05:15:45 AM (7 years ago)
- Location:
- pluginpass-pro-plugintheme-licensing/trunk
- Files:
-
- 7 edited
-
README.txt (modified) (3 diffs)
-
constants.php (modified) (2 diffs)
-
docker-compose.yml (modified) (1 diff)
-
examples/class-pluginpass-demo-settings.php (modified) (1 diff)
-
inc/admin/class-pluginpass-admin.php (modified) (1 diff)
-
inc/core/class-init.php (modified) (1 diff)
-
pluginpass.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pluginpass-pro-plugintheme-licensing/trunk/README.txt
r2152158 r2152916 8 8 Tested up to: 5.2.2 9 9 Requires PHP: 5.6 10 Stable tag: 0.9. 810 Stable tag: 0.9.9 11 11 License: GPLv2 or later 12 12 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 129 129 == Changelog == 130 130 131 = 0.9.9 = 132 * TODO 133 131 134 = 0.9.8 = 132 135 * Fix: New Host/Licensee validation fails with HTTP400 - Licensee does not exist #19 … … 136 139 * Update: User consent before validation #13 137 140 138 = 0.9. 8=141 = 0.9.9 = 139 142 * Fix: Adjust User-Agent to reflect plugin name and version #14 140 143 * Update: plugin documentation -
pluginpass-pro-plugintheme-licensing/trunk/constants.php
r2152158 r2152916 8 8 define( __NAMESPACE__ . '\NS', __NAMESPACE__ . '\\' ); 9 9 10 define( NS . 'PLUGIN_VERSION', '0.9. 8' );10 define( NS . 'PLUGIN_VERSION', '0.9.9' ); 11 11 12 12 define( NS . 'PLUGIN_NAME', 'pluginpass' ); … … 16 16 define( NS . 'PLUGIN_NAME_URL', plugin_dir_url( __FILE__ ) ); 17 17 18 define( NS . 'PLUGIN_BASENAME', plugin_basename( __ FILE__ ) );18 define( NS . 'PLUGIN_BASENAME', plugin_basename( __DIR__ ) ); 19 19 20 20 define( NS . 'PLUGIN_TEXT_DOMAIN', 'pluginpass' ); -
pluginpass-pro-plugintheme-licensing/trunk/docker-compose.yml
r2146523 r2152916 26 26 WORDPRESS_DB_PASSWORD: pluginpass 27 27 WORDPRESS_DEBUG: 1 28 WORDPRESS_DEBUG_LOG: 1 28 29 volumes: 29 - ".:/var/www/html/wp-content/plugins/pluginpass "30 - ".:/var/www/html/wp-content/plugins/pluginpass-pro-plugintheme-licensing" 30 31 - "./data/pluginpass-demo:/var/www/html/wp-content/plugins/pluginpass-demo" 31 32 phpmyadmin: -
pluginpass-pro-plugintheme-licensing/trunk/examples/class-pluginpass-demo-settings.php
r2152158 r2152916 259 259 } else { 260 260 $shop_url = $guard->get_shop_url(); 261 $this->show_notice( "Module $product_module_number is not invalid. Renew or acquire license <a target='_blank' href='$shop_url'> click</a>.", 'warning' );261 $this->show_notice( "Module $product_module_number is not invalid. Renew or acquire license <a target='_blank' href='$shop_url'>here</a>.", 'warning' ); 262 262 } 263 263 -
pluginpass-pro-plugintheme-licensing/trunk/inc/admin/class-pluginpass-admin.php
r2146523 r2152916 112 112 } 113 113 114 /* 115 * Documentation : https://codex.wordpress.org/Plugin_API/Filter_Reference/plugin_action_links_(plugin_file_name) 116 */ 117 public function add_plugin_action_links( $links ) { 118 $links[] = '<a href="https://github.com/Labs64/PluginPass/wiki" target="_blank">Docs</a>'; 119 $settings_link = array( 120 '<a href="' . admin_url( 'options-general.php?page=' . $this->plugin_name ) . '">' . __( 'Settings', $this->plugin_name ) . '</a>', 121 ); 122 return array_merge( $settings_link, $links ); 123 } 124 114 125 /** 115 126 * Screen options for the List Table -
pluginpass-pro-plugintheme-licensing/trunk/inc/core/class-init.php
r2137166 r2152916 115 115 $this->loader->add_action( 'admin_menu', $plugin_admin, 'add_plugin_admin_menu' ); 116 116 117 // Add an action link pointing to the options page. 118 $plugin_basename = $this->plugin_basename . '/' . $this->plugin_name . '.php'; 119 $this->loader->add_filter( 'plugin_action_links_' . $plugin_basename, $plugin_admin, 'add_plugin_action_links' ); 120 117 121 //when a form is submitted to admin-post.php 118 122 $this->loader->add_action( 'admin_post_pluginpass_form_response', $plugin_admin, 'the_form_response' ); -
pluginpass-pro-plugintheme-licensing/trunk/pluginpass.php
r2152158 r2152916 16 16 * Plugin URI: https://github.com/Labs64/PluginPass 17 17 * Description: WordPress Plugin/Theme Licensing powered by Labs64 NetLicensing 18 * Version: 0.9. 818 * Version: 0.9.9 19 19 * Author: Labs64 20 20 * Author URI: https://netlicensing.io
Note: See TracChangeset
for help on using the changeset viewer.