Changeset 2261024
- Timestamp:
- 03/14/2020 11:54:37 AM (6 years ago)
- Location:
- hb-freshdesk/trunk
- Files:
-
- 2 edited
-
freshdesk.php (modified) (3 diffs)
-
readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hb-freshdesk/trunk/freshdesk.php
r2083074 r2261024 1 1 <?php 2 /* 2 /** 3 3 Plugin Name:HB Freshdesk 4 4 Description: This plugin is used for connect your FreshDesk account in your wordpress site. You can easily to get your FreshDesk FAQs and Ticket, And also create a new ticket in your FreshDesk account directly using this plugin, And also check your ticket conversation. 5 Version: 3.0 6 Author: Hiren Patel ,Hike Branding 5 Plugin URI: 6 Version: 3.1 7 Author: Hiren Patel ,Hike Branding 7 8 Author URI: https://www.hikebranding.com/ 8 9 License: GPLv2 or later 10 9 11 */ 10 11 12 defined( 'ABSPATH' ) or die(); 12 13 … … 32 33 wp_register_script( 'fd-script-frontend', plugins_url('js/fd-script-frontend.js', __FILE__), array('jquery')); 33 34 wp_enqueue_script( 'fd-script-frontend' ); 34 35 // 35 36 wp_localize_script('fd-script-frontend', 'hb_ajax_object', array('ajax_url' => admin_url('admin-ajax.php'))); 37 38 36 39 } 40 37 41 } 38 42 43 39 44 function hbfreshdesk_plugin_options_install() { 40 45 global $wpdb; 41 46 $table = $wpdb->prefix . 'freshdesk'; 47 //echo $your_db_name;exit; 48 49 // create the ECPT metabox database table 42 50 if($wpdb->get_var("show tables like '$table'") != $table) 43 51 { … … 61 69 dbDelta($sql); 62 70 } 63 } 64 register_activation_hook(__FILE__,'hbfreshdesk_plugin_options_install'); 71 } 72 73 register_activation_hook(__FILE__,'hbfreshdesk_plugin_options_install'); 74 65 75 } 76 66 77 new HBFreshDeskAPI(); 67 78 ?> -
hb-freshdesk/trunk/readme.txt
r2261005 r2261024 1 1 === HB FreshDesk === 2 2 3 Contributors: hiren1612 ,hikebranding 3 4 Donate link: https://www.hikebranding.com/ 4 5 Tags: Freshdesk, Freshdesk Ticket, Freshdesk faq 5 Requires at least: 4.16 Requires at least: 3.0.1 6 7 Tested up to: 5.4 7 Stable tag: 3. 08 Stable tag: 3.1 8 9 License: GPLv2 or later 9 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 11 12 A plugin Get your Fresh desk account FAQ's and Crete a new Ticket and view your All ticket with full conversation. 12 13 14 13 15 == Description == 16 14 17 This plugin is used for connect your FreshDesk account in your wordpress site. You can easily to get your FreshDesk FAQs and Ticket, And also create a new ticket in your FreshDesk account directly using this plugin, And also check your ticket conversation. 15 18 16 19 FreshDesk Terms of Service 17 18 20 https://www.freshworks.com/terms/ 19 21 22 20 23 = Usage = 24 21 25 Place this shortcode in page, post or text widget where you'd like to display Data. 22 26 23 27 ` 24 28 [freshdesk-create-ticket] 25 26 29 [get_all_ticket] 27 28 30 [freshdesk-faq] 29 30 31 ` 31 32 33 32 34 = Templates = 35 33 36 Place this shortcode in any template parts of your theme. 34 37 … … 39 42 ` 40 43 44 45 == Installation == 41 46 = Installation = 42 47 1. Upload "hb_freshdesk" to the "/wp-content/plugins/" directory. 43 48 2. Activate the plugin through the "Plugins" menu in WordPress. 49 44 50 45 51 = How to Use = … … 49 55 4. Place Use Above Shortcode. 50 56 57 51 58 == Frequently Asked Questions == 52 59 53 60 = Having problems, questions, bugs & suggestions = 54 61 Contact us at https://www.hikebranding.com/ 62 55 63 56 64 == Screenshots == … … 63 71 7. Display FAQ's for check in your admin side in FAQ's menu list. 64 72 73 65 74 == Changelog == 75 66 76 = v1.0 = 67 77 * Initial release version. 68 78 69 79 = v2.0 = 70 Tested up to latest version.80 * Tested up to latest version. 71 81 72 = v 3.0=73 Tested up to latest version and bug fixed.82 = v2.1 = 83 * Fixed some bugs.
Note: See TracChangeset
for help on using the changeset viewer.