Plugin Directory

Changeset 3192278


Ignore:
Timestamp:
11/19/2024 12:56:36 PM (16 months ago)
Author:
agurghis
Message:

Compatible with latest WP verdsion

Location:
cardojo-lite
Files:
123 added
17 edited

Legend:

Unmodified
Added
Removed
  • cardojo-lite/readme.txt

    r3192247 r3192278  
    11=== CarDojo Lite ===
    22Contributors: agurghis
    3 Tags: car, marketplace, listings, dealer, cardealer, automotive, car-dealer
     3Tags: car, listings, cardealer, automotive, car-dealer
    44Requires at least: 3.4
    55Tested up to: 6.7
    6 Stable tag: 4.8
     6Stable tag: 1.6
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1919
    2020== Changelog ==
     21
     22= 1.0.3 - 2024-11-19 =
     23* Fix - Compaatible to latest WordPress version
    2124
    2225= 1.0.2 - 2017-09-26 =
  • cardojo-lite/trunk/assets/js/plugins.js

    r1736204 r3192278  
    17041704/**
    17051705 * @name MarkerClusterer for Google Maps v3
    1706  * @version version 1.0.2
     1706 * @version version 1.0.3
    17071707 * @author Luke Mahe
    17081708 * @fileoverview
  • cardojo-lite/trunk/cardojo.php

    r1736204 r3192278  
    1212 *
    1313 * @link              http://wpcardojoplugin.com
    14  * @since             1.0.2
     14 * @since             1.0.3
    1515 * @package           CarDojo
    1616 *
     
    1919 * Plugin URI:        http://wpcardojoplugin.com
    2020 * Description:       Vehicles shop or automotive marketplace plugin
    21  * Version:           1.0.2
     21 * Version:           1.0.3
    2222 * Author:            ThemesDojo
    2323 * Author URI:        http://themesdojo.com
     
    7171 * not affect the page life cycle.
    7272 *
    73  * @since    1.0.2
     73 * @since    1.0.3
    7474 */
    7575function run_CarDojo() {
  • cardojo-lite/trunk/includes/admin/class-cardojo-admin.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.2
     30     * @since    1.0.3
    3131     * @access   private
    3232     * @var      string    $CarDojo    The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.2
     39     * @since    1.0.3
    4040     * @access   private
    4141     * @var      string    $version    The current version of this plugin.
     
    4646     * Initialize the class and set its properties.
    4747     *
    48      * @since    1.0.2
     48     * @since    1.0.3
    4949     * @param      string    $CarDojo       The name of this plugin.
    5050     * @param      string    $version    The version of this plugin.
     
    6969     * Register the stylesheets for the admin area.
    7070     *
    71      * @since    1.0.2
     71     * @since    1.0.3
    7272     */
    7373    public function enqueue_styles() {
     
    8585         */
    8686
    87         wp_register_style( 'jquery-ui',          "http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css", false, "1.0.2", "all");
     87        wp_register_style( 'jquery-ui',          "http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css", false, "1.0.3", "all");
    8888        wp_enqueue_style( 'select2',             CARDOJO_PLUGIN_URL . '/assets/css/select2.min.css', array(), '4.0.3', 'all' );
    8989        //wp_enqueue_style( 'bootstratp',        CARDOJO_PLUGIN_URL . '/assets/css/bootstrap.min.css', array(), '4.0.3', 'all' );
     
    9797     * Register the JavaScript for the admin area.
    9898     *
    99      * @since    1.0.2
     99     * @since    1.0.3
    100100     */
    101101    public function enqueue_scripts() {
     
    121121        wp_enqueue_script( 'bootstrap',          CARDOJO_PLUGIN_URL . '/assets/js/bootstrap.min.js', array('jquery'), '4.0.3', true );
    122122        wp_register_script( 'bootstrap-select',  CARDOJO_PLUGIN_URL . '/assets/js/bootstrap-select.min.js', array('jquery'), '4.0.3', true );
    123         wp_register_script( 'loan-rate',         CARDOJO_PLUGIN_URL . '/assets/js/loan_rate.js', array('jquery'), '1.0.2', true );
     123        wp_register_script( 'loan-rate',         CARDOJO_PLUGIN_URL . '/assets/js/loan_rate.js', array('jquery'), '1.0.3', true );
    124124        wp_enqueue_script( 'google-maps',        'https://maps.googleapis.com/maps/api/js?key='.get_google_map_api_key(), array( 'jquery' ) );
    125125        wp_register_script( 'time-picker',       CARDOJO_PLUGIN_URL . '/assets/js/jquery.timePicker.min.js', array('jquery'), '2013-07-18', true );
  • cardojo-lite/trunk/includes/admin/class-cardojo-setup-wizard.php

    r1736204 r3192278  
    1111 * @category    Core
    1212 * @package     CarDojo/Core Functions
    13  * @version     1.0.2
     13 * @version     1.0.3
    1414 */
    1515
  • cardojo-lite/trunk/includes/admin/partials/cardojo-admin-display.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
  • cardojo-lite/trunk/includes/cardojo-core-functions.php

    r1736204 r3192278  
    1111 * @category    Core
    1212 * @package     CarDojo/Core Functions
    13  * @version     1.0.2
     13 * @version     1.0.3
    1414 */
    1515
  • cardojo-lite/trunk/includes/cardojo-template.php

    r1736204 r3192278  
    1111 * @category    Core
    1212 * @package     CarDojo/Template
    13  * @version     1.0.2
     13 * @version     1.0.3
    1414 */
    1515
  • cardojo-lite/trunk/includes/class-cardojo-activator.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
     
    1818 * This class defines all code necessary to run during the plugin's activation.
    1919 *
    20  * @since      1.0.2
     20 * @since      1.0.3
    2121 * @package    CarDojo Lite
    2222 * @subpackage CarDojo/includes
     
    3030     * Long Description.
    3131     *
    32      * @since    1.0.2
     32     * @since    1.0.3
    3333     */
    3434    public static function activate() {
  • cardojo-lite/trunk/includes/class-cardojo-deactivator.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
     
    1818 * This class defines all code necessary to run during the plugin's deactivation.
    1919 *
    20  * @since      1.0.2
     20 * @since      1.0.3
    2121 * @package    CarDojo Lite
    2222 * @subpackage CarDojo/includes
     
    3030     * Long Description.
    3131     *
    32      * @since    1.0.2
     32     * @since    1.0.3
    3333     */
    3434    public static function deactivate() {
  • cardojo-lite/trunk/includes/class-cardojo-i18n.php

    r1736204 r3192278  
    1010 *
    1111 * @link       http://wpcardojoplugin.com
    12  * @since      1.0.2
     12 * @since      1.0.3
    1313 *
    1414 * @package    CarDojo Lite
     
    2222 * so that it is ready for translation.
    2323 *
    24  * @since      1.0.2
     24 * @since      1.0.3
    2525 * @package    CarDojo Lite
    2626 * @subpackage CarDojo/includes
     
    3333     * Load the plugin text domain for translation.
    3434     *
    35      * @since    1.0.2
     35     * @since    1.0.3
    3636     */
    3737    public function load_plugin_textdomain() {
  • cardojo-lite/trunk/includes/class-cardojo-install.php

    r1736204 r3192278  
    147147    private static function update_cardojo_version() {
    148148        delete_option( 'cardojo_version' );
    149         add_option( 'cardojo_version', '1.0.2' );
     149        add_option( 'cardojo_version', '1.0.3' );
    150150    }
    151151
  • cardojo-lite/trunk/includes/class-cardojo-loader.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
     
    2929     * The array of actions registered with WordPress.
    3030     *
    31      * @since    1.0.2
     31     * @since    1.0.3
    3232     * @access   protected
    3333     * @var      array    $actions    The actions registered with WordPress to fire when the plugin loads.
     
    3838     * The array of filters registered with WordPress.
    3939     *
    40      * @since    1.0.2
     40     * @since    1.0.3
    4141     * @access   protected
    4242     * @var      array    $filters    The filters registered with WordPress to fire when the plugin loads.
     
    4747     * Initialize the collections used to maintain the actions and filters.
    4848     *
    49      * @since    1.0.2
     49     * @since    1.0.3
    5050     */
    5151    public function __construct() {
     
    5959     * Add a new action to the collection to be registered with WordPress.
    6060     *
    61      * @since    1.0.2
     61     * @since    1.0.3
    6262     * @param    string               $hook             The name of the WordPress action that is being registered.
    6363     * @param    object               $component        A reference to the instance of the object on which the action is defined.
     
    7373     * Add a new filter to the collection to be registered with WordPress.
    7474     *
    75      * @since    1.0.2
     75     * @since    1.0.3
    7676     * @param    string               $hook             The name of the WordPress filter that is being registered.
    7777     * @param    object               $component        A reference to the instance of the object on which the filter is defined.
     
    8888     * collection.
    8989     *
    90      * @since    1.0.2
     90     * @since    1.0.3
    9191     * @access   private
    9292     * @param    array                $hooks            The collection of hooks that is being registered (that is, actions or filters).
     
    115115     * Register the filters and actions with WordPress.
    116116     *
    117      * @since    1.0.2
     117     * @since    1.0.3
    118118     */
    119119    public function run() {
  • cardojo-lite/trunk/includes/class-cardojo.php

    r1736204 r3192278  
    1010 *
    1111 * @link       http://wpcardojoplugin.com
    12  * @since      1.0.2
     12 * @since      1.0.3
    1313 *
    1414 * @package    CarDojo Lite
     
    2525 * version of the plugin.
    2626 *
    27  * @since      1.0.2
     27 * @since      1.0.3
    2828 * @package    CarDojo Lite
    2929 * @subpackage CarDojo/includes
     
    3636     * the plugin.
    3737     *
    38      * @since    1.0.2
     38     * @since    1.0.3
    3939     * @access   protected
    4040     * @var      CarDojo_Loader    $loader    Maintains and registers all hooks for the plugin.
     
    4545     * The unique identifier of this plugin.
    4646     *
    47      * @since    1.0.2
     47     * @since    1.0.3
    4848     * @access   protected
    4949     * @var      string    $CarDojo    The string used to uniquely identify this plugin.
     
    5454     * The current version of the plugin.
    5555     *
    56      * @since    1.0.2
     56     * @since    1.0.3
    5757     * @var      string    $version    The current version of the plugin.
    5858     */
     
    6666     * the public-facing side of the site.
    6767     *
    68      * @since    1.0.2
     68     * @since    1.0.3
    6969     */
    7070    public function __construct() {
    7171
    7272        $this->CarDojo = 'cardojo';
    73         $this->version = '1.0.2';
     73        $this->version = '1.0.3';
    7474
    7575        $this->load_dependencies();
     
    173173     * with WordPress.
    174174     *
    175      * @since    1.0.2
     175     * @since    1.0.3
    176176     * @access   private
    177177     */
     
    211211     * with WordPress.
    212212     *
    213      * @since    1.0.2
     213     * @since    1.0.3
    214214     * @access   private
    215215     */
     
    226226     * of the plugin.
    227227     *
    228      * @since    1.0.2
     228     * @since    1.0.3
    229229     * @access   private
    230230     */
     
    243243     * of the plugin.
    244244     *
    245      * @since    1.0.2
     245     * @since    1.0.3
    246246     * @access   private
    247247     */
     
    258258     * Run the loader to execute all of the hooks with WordPress.
    259259     *
    260      * @since    1.0.2
     260     * @since    1.0.3
    261261     */
    262262    public function run() {
     
    268268     * WordPress and to define internationalization functionality.
    269269     *
    270      * @since     1.0.2
     270     * @since     1.0.3
    271271     * @return    string    The name of the plugin.
    272272     */
     
    278278     * The reference to the class that orchestrates the hooks with the plugin.
    279279     *
    280      * @since     1.0.2
     280     * @since     1.0.3
    281281     * @return    CarDojo_Loader    Orchestrates the hooks of the plugin.
    282282     */
     
    288288     * Retrieve the version number of the plugin.
    289289     *
    290      * @since     1.0.2
     290     * @since     1.0.3
    291291     * @return    string    The version number of the plugin.
    292292     */
  • cardojo-lite/trunk/includes/public/class-cardojo-public.php

    r1736204 r3192278  
    77 *
    88 * @link       http://wpcardojoplugin.com
    9  * @since      1.0.2
     9 * @since      1.0.3
    1010 *
    1111 * @package    CarDojo Lite
     
    2828     * The ID of this plugin.
    2929     *
    30      * @since    1.0.2
     30     * @since    1.0.3
    3131     * @access   private
    3232     * @var      string    $CarDojo    The ID of this plugin.
     
    3737     * The version of this plugin.
    3838     *
    39      * @since    1.0.2
     39     * @since    1.0.3
    4040     * @access   private
    4141     * @var      string    $version    The current version of this plugin.
     
    4646     * Initialize the class and set its properties.
    4747     *
    48      * @since    1.0.2
     48     * @since    1.0.3
    4949     * @param      string    $CarDojo       The name of the plugin.
    5050     * @param      string    $version    The version of this plugin.
     
    6060     * Register the stylesheets for the public-facing side of the site.
    6161     *
    62      * @since    1.0.2
     62     * @since    1.0.3
    6363     */
    6464    public function enqueue_styles() {
     
    7676         */
    7777
    78         wp_register_style( 'jquery-ui',           "http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css", false, "1.0.2", "all");
     78        wp_register_style( 'jquery-ui',           "http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css", false, "1.0.3", "all");
    7979        wp_register_style( 'bootstrap-select',    CARDOJO_PLUGIN_URL . '/assets/css/bootstrap-select.min.css', array(), '4.0.3', 'all' );
    8080
    81         wp_enqueue_style( 'plugins',             CARDOJO_PLUGIN_URL . '/assets/css/plugins.css', array(), '1.0.2', 'all' );
     81        wp_enqueue_style( 'plugins',             CARDOJO_PLUGIN_URL . '/assets/css/plugins.css', array(), '1.0.3', 'all' );
    8282       
    8383        wp_enqueue_style( 'cardojo_public_css',  CARDOJO_PLUGIN_URL . '/assets/css/cardojo-public.css', array(), $this->version, 'all' );
    84         wp_enqueue_style( 'responsive',          CARDOJO_PLUGIN_URL . '/assets/css/responsive.css', array(), '1.0.2', 'all' );
     84        wp_enqueue_style( 'responsive',          CARDOJO_PLUGIN_URL . '/assets/css/responsive.css', array(), '1.0.3', 'all' );
    8585
    8686    }
     
    8989     * Register the JavaScript for the public-facing side of the site.
    9090     *
    91      * @since    1.0.2
     91     * @since    1.0.3
    9292     */
    9393    public function enqueue_scripts() {
     
    108108        wp_enqueue_script( 'google-maps',        'https://maps.googleapis.com/maps/api/js?key='.get_google_map_api_key(), array( 'jquery' ) );
    109109        wp_register_script( 'bootstrap-select',  CARDOJO_PLUGIN_URL . '/assets/js/bootstrap-select.min.js', array('jquery'), '4.0.3', true );
    110         wp_register_script( 'loan-rate',         CARDOJO_PLUGIN_URL . '/assets/js/loan_rate.js', array('jquery'), '1.0.2', true );
     110        wp_register_script( 'loan-rate',         CARDOJO_PLUGIN_URL . '/assets/js/loan_rate.js', array('jquery'), '1.0.3', true );
    111111        wp_register_script( 'time-picker',       CARDOJO_PLUGIN_URL . '/assets/js/jquery.timePicker.min.js', array('jquery'), '2013-07-18', true );
    112112        wp_register_script( 'charts',            CARDOJO_PLUGIN_URL . '/assets/js/charts.js', array('jquery'), '2013-07-18', true );
    113         wp_enqueue_script( 'plugins',            CARDOJO_PLUGIN_URL . '/assets/js/plugins.js', array( 'jquery' ), '1.0.2', false );
    114         wp_enqueue_script( 'form',               CARDOJO_PLUGIN_URL . '/assets/js/jquery.form.js', array( 'jquery' ), '1.0.2', false );
     113        wp_enqueue_script( 'plugins',            CARDOJO_PLUGIN_URL . '/assets/js/plugins.js', array( 'jquery' ), '1.0.3', false );
     114        wp_enqueue_script( 'form',               CARDOJO_PLUGIN_URL . '/assets/js/jquery.form.js', array( 'jquery' ), '1.0.3', false );
    115115        wp_register_script( 'time-picker',       CARDOJO_PLUGIN_URL . '/assets/js/jquery.timePicker.min.js', array('jquery'), '2013-07-18', true );
    116116        wp_enqueue_script( 'cardojo_public_js',  CARDOJO_PLUGIN_URL . '/assets/js/cardojo-public.js', array( 'jquery' ), $this->version, false );
  • cardojo-lite/trunk/readme.txt

    r1736813 r3192278  
    2020== Changelog ==
    2121
    22 = 1.0.2 - 2017-09-26 =
     22= 1.0.3 - 2017-09-26 =
    2323* Fix - Fixed reports page
    2424
  • cardojo-lite/trunk/uninstall.php

    r1736204 r3192278  
    2323 *
    2424 * @link       http://wpcardojoplugin.com
    25  * @since      1.0.2
     25 * @since      1.0.3
    2626 *
    2727 * @package    CarDojo Lite
Note: See TracChangeset for help on using the changeset viewer.