Plugin Directory

Changeset 2325139


Ignore:
Timestamp:
06/16/2020 01:12:42 PM (6 years ago)
Author:
aiaibot
Message:

Compatible with php 7.1

Location:
aiaibot/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • aiaibot/trunk/README.txt

    r2313089 r2325139  
    44Tags: chatbot
    55Requires at least: 5.0.0
    6 Requires PHP: 7.3
     6Requires PHP: 7.1
    77Tested up to: 5.3
    88Stable tag: 5.3
     
    5959
    6060== Changelog ==
     61= 1.0.4 =
     62* Work with php version 7.1
    6163= 1.0.3 =
    6264* Fix attribute name
  • aiaibot/trunk/admin/class-aiaibot-admin.php

    r2313089 r2325139  
    55     *
    66     * @link       aiaibot
    7      * @since      1.0.3
     7     * @since      1.0.4
    88     *
    99     * @package    Aiaibot
     
    2525         * The ID of this plugin.
    2626         *
    27          * @since    1.0.3
     27         * @since    1.0.4
    2828         * @access   private
    2929         * @var      string $plugin_name The ID of this plugin.
     
    3434         * The version of this plugin.
    3535         *
    36          * @since    1.0.3
     36         * @since    1.0.4
    3737         * @access   private
    3838         * @var      string $version The current version of this plugin.
     
    4343         * Initialize the class and set its properties.
    4444         *
    45          * @since    1.0.3
     45         * @since    1.0.4
    4646         *
    4747         * @param      string $plugin_name The name of this plugin.
     
    5757         * Register the stylesheets for the admin area.
    5858         *
    59          * @since    1.0.3
     59         * @since    1.0.4
    6060         */
    6161        public function enqueue_styles() {
  • aiaibot/trunk/includes/class-aiaibot-activator.php

    r2313089 r2325139  
    55 *
    66 * @link       aiaibot
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Aiaibot
     
    1616 * This class defines all code necessary to run during the plugin's activation.
    1717 *
    18  * @since      1.0.3
     18 * @since      1.0.4
    1919 * @package    Aiaibot
    2020 * @subpackage Aiaibot/includes
     
    3131     * Long Description.
    3232     *
    33      * @since    1.0.3
     33     * @since    1.0.4
    3434     */
    3535    public static function activate() {
  • aiaibot/trunk/includes/class-aiaibot-deactivator.php

    r2313089 r2325139  
    55 *
    66 * @link       aiaibot
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Aiaibot
     
    1616 * This class defines all code necessary to run during the plugin's deactivation.
    1717 *
    18  * @since      1.0.3
     18 * @since      1.0.4
    1919 * @package    Aiaibot
    2020 * @subpackage Aiaibot/includes
     
    2828     * Long Description.
    2929     *
    30      * @since    1.0.3
     30     * @since    1.0.4
    3131     */
    3232    public static function deactivate() {
  • aiaibot/trunk/includes/class-aiaibot-i18n.php

    r2313089 r2325139  
    88 *
    99 * @link       aiaibot
    10  * @since      1.0.3
     10 * @since      1.0.4
    1111 *
    1212 * @package    Aiaibot
     
    2020 * so that it is ready for translation.
    2121 *
    22  * @since      1.0.3
     22 * @since      1.0.4
    2323 * @package    Aiaibot
    2424 * @subpackage Aiaibot/includes
     
    3131     * Load the plugin text domain for translation.
    3232     *
    33      * @since    1.0.3
     33     * @since    1.0.4
    3434     */
    3535    public function load_plugin_textdomain() {
  • aiaibot/trunk/includes/class-aiaibot-loader.php

    r2313089 r2325139  
    55 *
    66 * @link       aiaibot
    7  * @since      1.0.3
     7 * @since      1.0.4
    88 *
    99 * @package    Aiaibot
     
    2727     * The array of actions registered with WordPress.
    2828     *
    29      * @since    1.0.3
     29     * @since    1.0.4
    3030     * @access   protected
    3131     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3636     * The array of filters registered with WordPress.
    3737     *
    38      * @since    1.0.3
     38     * @since    1.0.4
    3939     * @access   protected
    4040     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4545     * Initialize the collections used to maintain the actions and filters.
    4646     *
    47      * @since    1.0.3
     47     * @since    1.0.4
    4848     */
    4949    public function __construct() {
     
    5757     * Add a new action to the collection to be registered with WordPress.
    5858     *
    59      * @since    1.0.3
     59     * @since    1.0.4
    6060     * @param    string               $hook             The name of the WordPress action that is being registered.
    6161     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7171     * Add a new filter to the collection to be registered with WordPress.
    7272     *
    73      * @since    1.0.3
     73     * @since    1.0.4
    7474     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7575     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8686     * collection.
    8787     *
    88      * @since    1.0.3
     88     * @since    1.0.4
    8989     * @access   private
    9090     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    113113     * Register the filters and actions with WordPress.
    114114     *
    115      * @since    1.0.3
     115     * @since    1.0.4
    116116     */
    117117    public function run() {
  • aiaibot/trunk/includes/class-aiaibot.php

    r2313089 r2325139  
    88     *
    99     * @link       aiaibot
    10      * @since      1.0.3
     10     * @since      1.0.4
    1111     *
    1212     * @package    Aiaibot
     
    2323     * version of the plugin.
    2424     *
    25      * @since      1.0.3
     25     * @since      1.0.4
    2626     * @package    Aiaibot
    2727     * @subpackage Aiaibot/includes
     
    3434         * the plugin.
    3535         *
    36          * @since    1.0.3
     36         * @since    1.0.4
    3737         * @access   protected
    3838         * @var      Aiaibot_Loader $loader Maintains and registers all hooks for the plugin.
     
    4343         * The unique identifier of this plugin.
    4444         *
    45          * @since    1.0.3
     45         * @since    1.0.4
    4646         * @access   protected
    4747         * @var      string $plugin_name The string used to uniquely identify this plugin.
     
    5252         * The current version of the plugin.
    5353         *
    54          * @since    1.0.3
     54         * @since    1.0.4
    5555         * @access   protected
    5656         * @var      string $version The current version of the plugin.
     
    6565         * the public-facing side of the site.
    6666         *
    67          * @since    1.0.3
     67         * @since    1.0.4
    6868         */
    6969        public function __construct() {
     
    7171                $this->version = AIAIBOT_VERSION;
    7272            } else {
    73                 $this->version = '1.0.3';
     73                $this->version = '1.0.4';
    7474            }
    7575            $this->plugin_name = 'aiaibot';
     
    9595         * with WordPress.
    9696         *
    97          * @since    1.0.3
     97         * @since    1.0.4
    9898         * @access   private
    9999         */
     
    133133         * with WordPress.
    134134         *
    135          * @since    1.0.3
     135         * @since    1.0.4
    136136         * @access   private
    137137         */
     
    148148         * of the plugin.
    149149         *
    150          * @since    1.0.3
     150         * @since    1.0.4
    151151         * @access   private
    152152         */
     
    165165         * of the plugin.
    166166         *
    167          * @since    1.0.3
     167         * @since    1.0.4
    168168         * @access   private
    169169         */
     
    178178         * Run the loader to execute all of the hooks with WordPress.
    179179         *
    180          * @since    1.0.3
     180         * @since    1.0.4
    181181         */
    182182        public function run() {
     
    188188         * WordPress and to define internationalization functionality.
    189189         *
    190          * @since     1.0.3
     190         * @since     1.0.4
    191191         * @return    string    The name of the plugin.
    192192         */
     
    198198         * The reference to the class that orchestrates the hooks with the plugin.
    199199         *
    200          * @since     1.0.3
     200         * @since     1.0.4
    201201         * @return    Aiaibot_Loader    Orchestrates the hooks of the plugin.
    202202         */
     
    208208         * Retrieve the version number of the plugin.
    209209         *
    210          * @since     1.0.3
     210         * @since     1.0.4
    211211         * @return    string    The version number of the plugin.
    212212         */
  • aiaibot/trunk/languages/aiaibot.pot

    r2313089 r2325139  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: aiaibot 1.0.3\n"
     5"Project-Id-Version: aiaibot 1.0.4\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/aiaibot\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • aiaibot/trunk/public/class-aiaibot-public.php

    r2313089 r2325139  
    55     *
    66     * @link       aiaibot
    7      * @since      1.0.3
     7     * @since      1.0.4
    88     *
    99     * @package    Aiaibot
     
    2626         * The ID of this plugin.
    2727         *
    28          * @since    1.0.3
     28         * @since    1.0.4
    2929         * @access   private
    3030         * @var      string $plugin_name The ID of this plugin.
     
    3535         * The version of this plugin.
    3636         *
    37          * @since    1.0.3
     37         * @since    1.0.4
    3838         * @access   private
    3939         * @var      string $version The current version of this plugin.
     
    4444         * Initialize the class and set its properties.
    4545         *
    46          * @since    1.0.3
     46         * @since    1.0.4
    4747         *
    4848         * @param      string $plugin_name The name of the plugin.
     
    5959         * Register the JavaScript for the public-facing side of the site.
    6060         *
    61          * @since    1.0.3
     61         * @since    1.0.4
    6262         */
    6363        public function enqueue_scripts() {
  • aiaibot/trunk/public/partials/aiaibot-public-display.php

    r2313089 r2325139  
    77 *
    88 * @link       aiaibot
    9  * @since      1.0.3
     9 * @since      1.0.4
    1010 *
    1111 * @package    Aiaibot
Note: See TracChangeset for help on using the changeset viewer.