Changeset 2706435
- Timestamp:
- 04/07/2022 01:19:51 PM (4 years ago)
- Location:
- melibo-chatbot
- Files:
-
- 7 added
- 3 edited
-
tags/1.1.0 (added)
-
tags/1.1.0/admin (added)
-
tags/1.1.0/admin/MeliboChatbot.class.php (added)
-
tags/1.1.0/includes (added)
-
tags/1.1.0/melibo-chatbot.php (added)
-
tags/1.1.0/readme.txt (added)
-
tags/1.1.0/uninstall.php (added)
-
trunk/admin/MeliboChatbot.class.php (modified) (2 diffs)
-
trunk/melibo-chatbot.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
melibo-chatbot/trunk/admin/MeliboChatbot.class.php
r2701252 r2706435 4 4 5 5 function __construct() { 6 add_action( 'admin_init', array($this, 'initSettings')); 6 7 add_action( 'admin_menu', array($this, 'adminPage')); 7 add_action( 'admin_init', array($this, 'initSettings'));8 8 add_action( 'wp_enqueue_scripts', array($this, 'showChatbot')); 9 10 add_filter( 'plugin_action_links_melibo-chatbot/melibo-chatbot.php', array($this, 'addSettingsLink')); 9 11 } 10 12 … … 84 86 <?php } 85 87 } 88 89 function addSettingsLink($links) { 90 91 $url = esc_url( add_query_arg( 92 'page', 93 'melibo-settings-page', 94 get_admin_url() . 'admin.php' 95 ) ); 96 97 $settings_link = "<a href='$url'>" . __( 'Settings' ) . '</a>'; 98 99 array_push( 100 $links, 101 $settings_link 102 ); 103 return $links; 104 } 86 105 } -
melibo-chatbot/trunk/melibo-chatbot.php
r2701682 r2706435 4 4 * Plugin Name: melibo Chatbot 5 5 * Description: add your melibo chatbot to your WordPress for free 6 * Version: 1. 0.16 * Version: 1.1.0 7 7 * Author: Melibo 8 8 * Author URI: www.melibo.de -
melibo-chatbot/trunk/readme.txt
r2702733 r2706435 3 3 Tags: chat, live chat, chatbot, support, livechat, bot, melibo, Helpdesk, E-Commerce, messenger, AI, widget, 4 4 Tested up to: 5.9.2 5 Stable tag: 1. 0.15 Stable tag: 1.1.0 6 6 License: GPLv2 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 133 133 134 134 - change CDN URL 135 136 = 1.1.0 = 137 138 - add settings link in plugin overview
Note: See TracChangeset
for help on using the changeset viewer.