Changeset 2325139
- Timestamp:
- 06/16/2020 01:12:42 PM (6 years ago)
- Location:
- aiaibot/trunk
- Files:
-
- 10 edited
-
README.txt (modified) (2 diffs)
-
admin/class-aiaibot-admin.php (modified) (5 diffs)
-
includes/class-aiaibot-activator.php (modified) (3 diffs)
-
includes/class-aiaibot-deactivator.php (modified) (3 diffs)
-
includes/class-aiaibot-i18n.php (modified) (3 diffs)
-
includes/class-aiaibot-loader.php (modified) (8 diffs)
-
includes/class-aiaibot.php (modified) (15 diffs)
-
languages/aiaibot.pot (modified) (1 diff)
-
public/class-aiaibot-public.php (modified) (5 diffs)
-
public/partials/aiaibot-public-display.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
aiaibot/trunk/README.txt
r2313089 r2325139 4 4 Tags: chatbot 5 5 Requires at least: 5.0.0 6 Requires PHP: 7. 36 Requires PHP: 7.1 7 7 Tested up to: 5.3 8 8 Stable tag: 5.3 … … 59 59 60 60 == Changelog == 61 = 1.0.4 = 62 * Work with php version 7.1 61 63 = 1.0.3 = 62 64 * Fix attribute name -
aiaibot/trunk/admin/class-aiaibot-admin.php
r2313089 r2325139 5 5 * 6 6 * @link aiaibot 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Aiaibot … … 25 25 * The ID of this plugin. 26 26 * 27 * @since 1.0. 327 * @since 1.0.4 28 28 * @access private 29 29 * @var string $plugin_name The ID of this plugin. … … 34 34 * The version of this plugin. 35 35 * 36 * @since 1.0. 336 * @since 1.0.4 37 37 * @access private 38 38 * @var string $version The current version of this plugin. … … 43 43 * Initialize the class and set its properties. 44 44 * 45 * @since 1.0. 345 * @since 1.0.4 46 46 * 47 47 * @param string $plugin_name The name of this plugin. … … 57 57 * Register the stylesheets for the admin area. 58 58 * 59 * @since 1.0. 359 * @since 1.0.4 60 60 */ 61 61 public function enqueue_styles() { -
aiaibot/trunk/includes/class-aiaibot-activator.php
r2313089 r2325139 5 5 * 6 6 * @link aiaibot 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Aiaibot … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1.0. 318 * @since 1.0.4 19 19 * @package Aiaibot 20 20 * @subpackage Aiaibot/includes … … 31 31 * Long Description. 32 32 * 33 * @since 1.0. 333 * @since 1.0.4 34 34 */ 35 35 public static function activate() { -
aiaibot/trunk/includes/class-aiaibot-deactivator.php
r2313089 r2325139 5 5 * 6 6 * @link aiaibot 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Aiaibot … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1.0. 318 * @since 1.0.4 19 19 * @package Aiaibot 20 20 * @subpackage Aiaibot/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.0. 330 * @since 1.0.4 31 31 */ 32 32 public static function deactivate() { -
aiaibot/trunk/includes/class-aiaibot-i18n.php
r2313089 r2325139 8 8 * 9 9 * @link aiaibot 10 * @since 1.0. 310 * @since 1.0.4 11 11 * 12 12 * @package Aiaibot … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.0. 322 * @since 1.0.4 23 23 * @package Aiaibot 24 24 * @subpackage Aiaibot/includes … … 31 31 * Load the plugin text domain for translation. 32 32 * 33 * @since 1.0. 333 * @since 1.0.4 34 34 */ 35 35 public function load_plugin_textdomain() { -
aiaibot/trunk/includes/class-aiaibot-loader.php
r2313089 r2325139 5 5 * 6 6 * @link aiaibot 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Aiaibot … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.0. 329 * @since 1.0.4 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. 338 * @since 1.0.4 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. 347 * @since 1.0.4 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. 359 * @since 1.0.4 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. 373 * @since 1.0.4 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. 388 * @since 1.0.4 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. 3115 * @since 1.0.4 116 116 */ 117 117 public function run() { -
aiaibot/trunk/includes/class-aiaibot.php
r2313089 r2325139 8 8 * 9 9 * @link aiaibot 10 * @since 1.0. 310 * @since 1.0.4 11 11 * 12 12 * @package Aiaibot … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.0. 325 * @since 1.0.4 26 26 * @package Aiaibot 27 27 * @subpackage Aiaibot/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.0. 336 * @since 1.0.4 37 37 * @access protected 38 38 * @var Aiaibot_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1.0. 345 * @since 1.0.4 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. 354 * @since 1.0.4 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. 367 * @since 1.0.4 68 68 */ 69 69 public function __construct() { … … 71 71 $this->version = AIAIBOT_VERSION; 72 72 } else { 73 $this->version = '1.0. 3';73 $this->version = '1.0.4'; 74 74 } 75 75 $this->plugin_name = 'aiaibot'; … … 95 95 * with WordPress. 96 96 * 97 * @since 1.0. 397 * @since 1.0.4 98 98 * @access private 99 99 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1.0. 3135 * @since 1.0.4 136 136 * @access private 137 137 */ … … 148 148 * of the plugin. 149 149 * 150 * @since 1.0. 3150 * @since 1.0.4 151 151 * @access private 152 152 */ … … 165 165 * of the plugin. 166 166 * 167 * @since 1.0. 3167 * @since 1.0.4 168 168 * @access private 169 169 */ … … 178 178 * Run the loader to execute all of the hooks with WordPress. 179 179 * 180 * @since 1.0. 3180 * @since 1.0.4 181 181 */ 182 182 public function run() { … … 188 188 * WordPress and to define internationalization functionality. 189 189 * 190 * @since 1.0. 3190 * @since 1.0.4 191 191 * @return string The name of the plugin. 192 192 */ … … 198 198 * The reference to the class that orchestrates the hooks with the plugin. 199 199 * 200 * @since 1.0. 3200 * @since 1.0.4 201 201 * @return Aiaibot_Loader Orchestrates the hooks of the plugin. 202 202 */ … … 208 208 * Retrieve the version number of the plugin. 209 209 * 210 * @since 1.0. 3210 * @since 1.0.4 211 211 * @return string The version number of the plugin. 212 212 */ -
aiaibot/trunk/languages/aiaibot.pot
r2313089 r2325139 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: aiaibot 1.0. 3\n"5 "Project-Id-Version: aiaibot 1.0.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aiaibot\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
aiaibot/trunk/public/class-aiaibot-public.php
r2313089 r2325139 5 5 * 6 6 * @link aiaibot 7 * @since 1.0. 37 * @since 1.0.4 8 8 * 9 9 * @package Aiaibot … … 26 26 * The ID of this plugin. 27 27 * 28 * @since 1.0. 328 * @since 1.0.4 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. 337 * @since 1.0.4 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. 346 * @since 1.0.4 47 47 * 48 48 * @param string $plugin_name The name of the plugin. … … 59 59 * Register the JavaScript for the public-facing side of the site. 60 60 * 61 * @since 1.0. 361 * @since 1.0.4 62 62 */ 63 63 public function enqueue_scripts() { -
aiaibot/trunk/public/partials/aiaibot-public-display.php
r2313089 r2325139 7 7 * 8 8 * @link aiaibot 9 * @since 1.0. 39 * @since 1.0.4 10 10 * 11 11 * @package Aiaibot
Note: See TracChangeset
for help on using the changeset viewer.