Changeset 2862862
- Timestamp:
- 02/09/2023 05:12:22 PM (3 years ago)
- Location:
- usermaven/trunk
- Files:
-
- 12 edited
-
README.txt (modified) (1 diff)
-
admin/class-usermaven-admin.php (modified) (6 diffs)
-
admin/partials/usermaven-admin-display.php (modified) (1 diff)
-
includes/class-usermaven-activator.php (modified) (3 diffs)
-
includes/class-usermaven-deactivator.php (modified) (3 diffs)
-
includes/class-usermaven-i18n.php (modified) (3 diffs)
-
includes/class-usermaven-loader.php (modified) (8 diffs)
-
includes/class-usermaven.php (modified) (15 diffs)
-
public/class-usermaven-public.php (modified) (6 diffs)
-
public/partials/usermaven-public-display.php (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
-
usermaven.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
usermaven/trunk/README.txt
r2862858 r2862862 6 6 Tested up to: 6.1 7 7 Requires PHP: 5.6 8 Stable tag: 1.0 8 Stable tag: 1.0.1 9 9 License: Massachusetts Institute of Technology (MIT) license 10 10 License URI: https://opensource.org/licenses/MIT -
usermaven/trunk/admin/class-usermaven-admin.php
r2862855 r2862862 5 5 * 6 6 * @link https://usermaven.com/ 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Usermaven … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1.0. 028 * @since 1.0.1 29 29 * @access private 30 30 * @var string $plugin_name The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1.0. 037 * @since 1.0.1 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1.0. 046 * @since 1.0.1 47 47 * @param string $plugin_name The name of this plugin. 48 48 * @param string $version The version of this plugin. … … 58 58 * Register the stylesheets for the admin area. 59 59 * 60 * @since 1.0. 060 * @since 1.0.1 61 61 */ 62 62 public function enqueue_styles() { … … 81 81 * Register the JavaScript for the admin area. 82 82 * 83 * @since 1.0. 083 * @since 1.0.1 84 84 */ 85 85 public function enqueue_scripts() { -
usermaven/trunk/admin/partials/usermaven-admin-display.php
r2862855 r2862862 7 7 * 8 8 * @link https://usermaven.com/ 9 * @since 1.0. 09 * @since 1.0.1 10 10 * 11 11 * @package Usermaven -
usermaven/trunk/includes/class-usermaven-activator.php
r2862855 r2862862 5 5 * 6 6 * @link https://usermaven.com/ 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Usermaven … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1.0. 018 * @since 1.0.1 19 19 * @package Usermaven 20 20 * @subpackage Usermaven/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.0. 030 * @since 1.0.1 31 31 */ 32 32 public static function activate() { -
usermaven/trunk/includes/class-usermaven-deactivator.php
r2862855 r2862862 5 5 * 6 6 * @link https://usermaven.com/ 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Usermaven … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1.0. 018 * @since 1.0.1 19 19 * @package Usermaven 20 20 * @subpackage Usermaven/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.0. 030 * @since 1.0.1 31 31 */ 32 32 public static function deactivate() { -
usermaven/trunk/includes/class-usermaven-i18n.php
r2862855 r2862862 8 8 * 9 9 * @link https://usermaven.com/ 10 * @since 1.0. 010 * @since 1.0.1 11 11 * 12 12 * @package Usermaven … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 022 * @since 1.0.1 23 23 * @package Usermaven 24 24 * @subpackage Usermaven/includes … … 31 31 * Load the plugin text domain for translation. 32 32 * 33 * @since 1.0. 033 * @since 1.0.1 34 34 */ 35 35 public function load_plugin_textdomain() { -
usermaven/trunk/includes/class-usermaven-loader.php
r2862855 r2862862 5 5 * 6 6 * @link https://usermaven.com/ 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Usermaven … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 029 * @since 1.0.1 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1.0. 038 * @since 1.0.1 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1.0. 047 * @since 1.0.1 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1.0. 059 * @since 1.0.1 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1.0. 073 * @since 1.0.1 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1.0. 088 * @since 1.0.1 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1.0. 0115 * @since 1.0.1 116 116 */ 117 117 public function run() { -
usermaven/trunk/includes/class-usermaven.php
r2862858 r2862862 8 8 * 9 9 * @link https://usermaven.com/ 10 * @since 1.0. 010 * @since 1.0.1 11 11 * 12 12 * @package Usermaven … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 025 * @since 1.0.1 26 26 * @package Usermaven 27 27 * @subpackage Usermaven/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 036 * @since 1.0.1 37 37 * @access protected 38 38 * @var Usermaven_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1.0. 045 * @since 1.0.1 46 46 * @access protected 47 47 * @var string $plugin_name The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1.0. 054 * @since 1.0.1 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1.0. 067 * @since 1.0.1 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = USERMAVEN_VERSION; 72 72 } else { 73 $this->version = '1.0. 0';73 $this->version = '1.0.1'; 74 74 } 75 75 $this->plugin_name = 'usermaven'; … … 95 95 * with WordPress. 96 96 * 97 * @since 1.0. 097 * @since 1.0.1 98 98 * @access private 99 99 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1.0. 0135 * @since 1.0.1 136 136 * @access private 137 137 */ … … 148 148 * of the plugin. 149 149 * 150 * @since 1.0. 0150 * @since 1.0.1 151 151 * @access private 152 152 */ … … 164 164 * of the plugin. 165 165 * 166 * @since 1.0. 0166 * @since 1.0.1 167 167 * @access private 168 168 */ … … 179 179 * Run the loader to execute all of the hooks with WordPress. 180 180 * 181 * @since 1.0. 0181 * @since 1.0.1 182 182 */ 183 183 public function run() { … … 189 189 * WordPress and to define internationalization functionality. 190 190 * 191 * @since 1.0. 0191 * @since 1.0.1 192 192 * @return string The name of the plugin. 193 193 */ … … 199 199 * The reference to the class that orchestrates the hooks with the plugin. 200 200 * 201 * @since 1.0. 0201 * @since 1.0.1 202 202 * @return Usermaven_Loader Orchestrates the hooks of the plugin. 203 203 */ … … 209 209 * Retrieve the version number of the plugin. 210 210 * 211 * @since 1.0. 0211 * @since 1.0.1 212 212 * @return string The version number of the plugin. 213 213 */ -
usermaven/trunk/public/class-usermaven-public.php
r2862855 r2862862 5 5 * 6 6 * @link https://usermaven.com/ 7 * @since 1.0. 07 * @since 1.0.1 8 8 * 9 9 * @package Usermaven … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1.0. 028 * @since 1.0.1 29 29 * @access private 30 30 * @var string $plugin_name The ID of this plugin. … … 35 35 * The version of this plugin. 36 36 * 37 * @since 1.0. 037 * @since 1.0.1 38 38 * @access private 39 39 * @var string $version The current version of this plugin. … … 44 44 * Initialize the class and set its properties. 45 45 * 46 * @since 1.0. 046 * @since 1.0.1 47 47 * @param string $plugin_name The name of the plugin. 48 48 * @param string $version The version of this plugin. … … 58 58 * Register the stylesheets for the public-facing side of the site. 59 59 * 60 * @since 1.0. 060 * @since 1.0.1 61 61 */ 62 62 public function enqueue_styles() { … … 81 81 * Register the JavaScript for the public-facing side of the site. 82 82 * 83 * @since 1.0. 083 * @since 1.0.1 84 84 */ 85 85 public function enqueue_scripts() { -
usermaven/trunk/public/partials/usermaven-public-display.php
r2862855 r2862862 7 7 * 8 8 * @link https://usermaven.com/ 9 * @since 1.0. 09 * @since 1.0.1 10 10 * 11 11 * @package Usermaven -
usermaven/trunk/uninstall.php
r2862855 r2862862 21 21 * 22 22 * @link https://usermaven.com/ 23 * @since 1.0. 023 * @since 1.0.1 24 24 * 25 25 * @package Usermaven -
usermaven/trunk/usermaven.php
r2862858 r2862862 10 10 * 11 11 * @link https://usermaven.com/ 12 * @since 1.0. 012 * @since 1.0.1 13 13 * @package Usermaven 14 14 * … … 17 17 * Plugin URI: https://github.com/usermaven/wordpress 18 18 * Description: The Easiest Website and Product Analytics Platform 19 * Version: 1.0. 019 * Version: 1.0.1 20 20 * Author: Usermaven 21 21 * Author URI: https://usermaven.com/ … … 33 33 /** 34 34 * Currently plugin version. 35 * Start at version 1.0. 0and use SemVer - https://semver.org35 * Start at version 1.0.1 and use SemVer - https://semver.org 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'USERMAVEN_VERSION', '1.0. 0' );38 define( 'USERMAVEN_VERSION', '1.0.1' ); 39 39 40 40 /** … … 122 122 * not affect the page life cycle. 123 123 * 124 * @since 1.0. 0124 * @since 1.0.1 125 125 */ 126 126 function run_usermaven() {
Note: See TracChangeset
for help on using the changeset viewer.