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