Plugin Directory

Changeset 2404532


Ignore:
Timestamp:
10/22/2020 11:04:26 AM (5 years ago)
Author:
hiren1612
Message:

Tested with WordPress latest version.

Location:
hb-freshdesk
Files:
20 added
2 edited

Legend:

Unmodified
Added
Removed
  • hb-freshdesk/trunk/freshdesk.php

    r2261024 r2404532  
    11<?php
    2 /**
     2/*
    33 Plugin Name:HB Freshdesk
    44 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
    87 Author URI: https://www.hikebranding.com/
    98 License: GPLv2 or later
     9*/
    1010
    11 */
    1211defined( 'ABSPATH' ) or die();
    1312
     
    3332            wp_register_script( 'fd-script-frontend', plugins_url('js/fd-script-frontend.js', __FILE__), array('jquery'));
    3433            wp_enqueue_script( 'fd-script-frontend' );
    35 //           
     34           
    3635            wp_localize_script('fd-script-frontend', 'hb_ajax_object', array('ajax_url' => admin_url('admin-ajax.php')));
    37            
    38 
    3936        }
    40 
    4137    }
    42    
    43    
     38       
    4439    function hbfreshdesk_plugin_options_install() {
    4540    global $wpdb;
    4641    $table = $wpdb->prefix . 'freshdesk';
    47     //echo $your_db_name;exit;
    48  
    49     // create the ECPT metabox database table
    5042    if($wpdb->get_var("show tables like '$table'") != $table)
    5143    {       
     
    6961            dbDelta($sql);
    7062    }
    71     }
    72    
    73     register_activation_hook(__FILE__,'hbfreshdesk_plugin_options_install');
    74    
     63    }   
     64    register_activation_hook(__FILE__,'hbfreshdesk_plugin_options_install');   
    7565}
    76 
    7766new HBFreshDeskAPI();
    7867?>
  • hb-freshdesk/trunk/readme.txt

    r2261024 r2404532  
    11=== HB FreshDesk  ===
    2 
    32Contributors: hiren1612 ,hikebranding
    43Donate link: https://www.hikebranding.com/
    54Tags: Freshdesk, Freshdesk Ticket, Freshdesk faq
    6 Requires at least: 3.0.1
    7 Tested up to: 5.4
    8 Stable tag: 3.1
     5Requires at least: 4.1
     6Tested up to: 5.5.1
     7Stable tag: 3.0
    98License: GPLv2 or later
    109License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1211A plugin Get your Fresh desk account FAQ's and Crete a new Ticket and view your All ticket with full conversation. 
    1312
    14 
    1513== Description ==
    16 
    1714This 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.
    1815
    1916FreshDesk Terms of Service
     17
    2018https://www.freshworks.com/terms/
    2119
    22 
    2320= Usage =
    24 
    2521Place this shortcode in page, post or text widget where you'd like to display Data.
    2622
    2723`
    2824[freshdesk-create-ticket]
     25
    2926[get_all_ticket]
     27
    3028[freshdesk-faq]
     29
    3130`
    3231
    33 
    3432= Templates =
    35 
    3633Place this shortcode in any template parts of your theme.
    3734
     
    4239`
    4340
    44 
    45 == Installation ==
    4641= Installation =
    47421. Upload "hb_freshdesk" to the "/wp-content/plugins/" directory.
    48432. Activate the plugin through the "Plugins" menu in WordPress.
    49 
    5044
    5145= How to Use =
     
    55494. Place Use Above Shortcode.
    5650
    57 
    5851== Frequently Asked Questions ==
    5952
    6053= Having problems, questions, bugs & suggestions =
    6154Contact us at https://www.hikebranding.com/
    62 
    6355
    6456== Screenshots ==
     
    71637. Display FAQ's for check in your admin side in FAQ's menu list.
    7264
    73 
    7465== Changelog ==
    75 
    7666= v1.0 =
    7767* Initial release version.
    7868
    7969= v2.0 =
    80 * Tested up to latest version.
     70Tested up to latest version.
    8171
    82 = v2.1 =
    83 * Fixed some bugs.
     72= v3.0 =
     73Tested up to latest version and bug fixed.
Note: See TracChangeset for help on using the changeset viewer.