Plugin Directory

Changeset 3234755


Ignore:
Timestamp:
02/04/2025 01:28:35 PM (14 months ago)
Author:
ashokdudhat
Message:

Released version 1.0.2

Location:
wp-event-manager-migration/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-event-manager-migration/trunk/admin/wpem-migration-admin.php

    r2957872 r3234755  
    88 */
    99class WPEM_Migration_Admin {
     10
     11    public $import_class;
    1012
    1113    /**
  • wp-event-manager-migration/trunk/readme.txt

    r2957872 r3234755  
    55Tags: event, events migration, migration, calendar, meetups, eventon, event expresso.
    66Requires at least: 5.4.1
    7 Tested up to: 6.2.2
    8 Stable tag: 1.0.1
     7Tested up to: 6.7.1
     8Stable tag: 1.0.2
    99Requires PHP: 7.1
    1010License: GNU General Public License v3.0
     
    7272== Changelog ==
    7373
     74= 1.0.2 [ 24 January 2025 ] =
     75
     76Fixed : Venue logo image and Event location Map are not displayed.
     77Fixed : The registration option is not working.
     78Fixed : Migration box line should be proper.
     79Fixed : Plugin check error is fixed.
     80Fixed : Language translation issue is fixed.
     81Fixed : The fatal error message is fixed.
     82Fixed : Deprecated code error is fixed
     83
    7484= 1.0.1 [ 24th August 2023 ] =
    7585
  • wp-event-manager-migration/trunk/templates/admin/event-migration-file-upload.php

    r2957872 r3234755  
    11<div class="wrap wp-event-manager-migration-wrap">
    2     <h2><?php _e('Event Migration', 'wp-event-manager-migration'); ?></h2>
     2    <h2><?php esc_html_e('Event Migration', 'wp-event-manager-migration'); ?></h2>
    33
    44    <div class="notice notice-warning">
    5         <p><?php _e('If you have separate Organizer and Venues file then first import Organizer then Venues. After import Organizer and Venues then import Event.', 'wp-event-manager-migration'); ?></p>
     5        <p><?php esc_html_e('If you have separate Organizer and Venues file then first import Organizer then Venues. After import Organizer and Venues then import Event.', 'wp-event-manager-migration'); ?></p>
    66    </div>
    77
     
    99        <table class="widefat">
    1010            <tr>
    11                 <th><?php _e('Choose File', 'wp-event-manager-migration' ); ?></th>
     11                <th><?php esc_html_e('Choose File', 'wp-event-manager-migration' ); ?></th>
    1212                <td>
    13                     <a href="javascript:void(0)" class="upload-file"><?php _e('Upload .csv or.xml file', 'wp-event-manager-migration' ); ?></a>
     13                    <a href="javascript:void(0)" class="upload-file"><?php esc_html_e('Upload .csv or.xml file', 'wp-event-manager-migration' ); ?></a>
    1414                    <span class="response-message"></span>
    1515                    <input type="hidden" name="file_id" id="file_id" value="" />
     
    1818            </tr>
    1919            <tr>
    20                 <th><?php _e('Content Type', 'wp-event-manager-migration' ); ?></th>
     20                <th><?php esc_html_e('Content Type', 'wp-event-manager-migration' ); ?></th>
    2121                <td>
    2222                    <select id="migration_post_type" name="migration_post_type">
     
    3131                    <input type="hidden" name="page" value="event-migration" />
    3232                    <input type="hidden" name="action" value="upload" />
    33                     <input type="button" class="button-primary" name="wp_event_manager_migration_upload" value="<?php _e( 'Step 1', 'wp-event-manager-migration' ); ?>" />
     33                    <input type="button" class="button-primary" name="wp_event_manager_migration_upload" value="<?php esc_html_e( 'Step 1', 'wp-event-manager-migration' ); ?>" />
    3434                    <?php wp_nonce_field( 'event_manager_migration_upload' ); ?>
    3535                </td>
  • wp-event-manager-migration/trunk/templates/admin/event-migration-import.php

    r2957872 r3234755  
    11<div class="wrap wp-event-manager-migration-wrap">
    2     <h2><?php _e('Event Migration Import', 'wp-event-manager-migration'); ?></h2>
     2    <h2><?php esc_html_e('Event Migration Import', 'wp-event-manager-migration'); ?></h2>
    33
    44    <table class="widefat">
    55        <tr>
    6             <th><?php _e('Field Name', 'wp-event-manager-migration' ); ?></th>
    7             <th><?php _e('Field Value', 'wp-event-manager-migration' ); ?></th>
     6            <th><?php esc_html_e('Field Name', 'wp-event-manager-migration' ); ?></th>
     7            <th><?php esc_html_e('Field Value', 'wp-event-manager-migration' ); ?></th>
    88        </tr>
    99
     
    2727                    <input type="hidden" name="file_type" id="file_type" value="<?php echo $file_type; ?>" />
    2828                    <input type="hidden" name="action" value="import" />
    29                     <input type="submit" class="button-primary" name="wp_event_manager_migration_import" value="<?php _e( 'Import', 'wp-event-manager-migration' ); ?>" />
     29                    <input type="submit" class="button-primary" name="wp_event_manager_migration_import" value="<?php esc_html_e( 'Import', 'wp-event-manager-migration' ); ?>" />
    3030                    <?php wp_nonce_field( 'event_manager_migration_import' ); ?>
    3131                </td>
  • wp-event-manager-migration/trunk/templates/admin/event-migration-success.php

    r2957872 r3234755  
    11<div class="wrap wp-event-manager-migration-wrap">
    2     <h2><?php _e('Event Migration Successfully', 'wp-event-manager-migration'); ?></h2>
     2    <h2><?php esc_html_e('Event Migration Successfully', 'wp-event-manager-migration'); ?></h2>
    33    <table class="widefat">
    44        <tr>
     
    1010            <th>
    1111                <a href="<?php echo get_site_url(); ?>/wp-admin/admin.php?page=event-migration" class="button">
    12                     <?php _e('Import new .csv or .xml', 'wp-event-manager-migration'); ?>
     12                    <?php esc_html_e('Import new .csv or .xml', 'wp-event-manager-migration'); ?>
    1313                </a>
    1414            </th>
  • wp-event-manager-migration/trunk/wp-event-manager-migration.php

    r2957872 r3234755  
    88* Text Domain: wp-event-manager-migration
    99* Domain Path: /languages
    10 * Version: 1.0.1
     10* Version: 1.0.2
    1111* Since: 1.0.0
    1212* Requires WordPress Version at least: 5.4.1
     
    7373    public function __construct() {
    7474        // Define constants
    75         define( 'WPEM_MIGRATION_VERSION', '1.0.1' );
     75        define( 'WPEM_MIGRATION_VERSION', '1.0.2' );
    7676        define( 'WPEM_MIGRATION_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    7777        define( 'WPEM_MIGRATION_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
Note: See TracChangeset for help on using the changeset viewer.