Changeset 3469699
- Timestamp:
- 02/25/2026 07:53:41 PM (5 weeks ago)
- Location:
- cwsi-invites/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (3 diffs)
-
admin/class-cwsi-invites-admin.php (modified) (7 diffs)
-
admin/partials/cwsi-invites-admin-display.php (modified) (7 diffs)
-
cwsi-invites.php (modified) (4 diffs)
-
includes/class-cwsi-invites.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cwsi-invites/trunk/README.txt
r3286964 r3469699 2 2 Contributors: charcope, sjcope 3 3 Tags: invitations, rsvps 4 Stable tag: 1. 4.14 Stable tag: 1.5.1 5 5 License: GPLv2 6 6 License URI: https://www.gnu.org/licenses/gpl-2.0.html 7 Tested up to: 6. 87 Tested up to: 6.9 8 8 9 9 Set up a an invitation and RSVP system on your WordPress site. … … 50 50 51 51 == Changelog == 52 = 1.5.1 = 53 * Test with latest WordPress. 54 55 = 1.5 = 56 * Update the SDK 57 52 58 = 1.4.1 = 53 59 * Add back some premium functions … … 84 90 85 91 == Upgrade Notice == 92 = 1.5.1 = 93 * Test with latest WordPress 94 95 = 1.5 = 96 * Update the SDK. Update when convenient. 97 86 98 = 1.4.1 = 87 99 * Add back some premium functions. Update as soon as possible. -
cwsi-invites/trunk/admin/class-cwsi-invites-admin.php
r3286964 r3469699 180 180 array($this, 'cwsiinvitesviewresponses_page') 181 181 ); 182 // END PREMIUM ONLY 182 183 } 183 184 … … 367 368 ); 368 369 } 370 // END PREMIUM ONLY 369 371 // Display form 370 cws lShowFilterEvents( $menu_slug, $results_events, $search_event_id );372 cwsiShowFilterEvents( $menu_slug, $results_events, $search_event_id ); 371 373 cwsiShowAddInvitesPage( 372 374 $menu_slug, … … 469 471 // Display functions 470 472 require_once plugin_dir_path( __FILE__ ) . 'partials/cwsi-invites-admin-display.php'; 471 cws lShowFilterEvents( $menu_slug, $results_events, $search_event_id );473 cwsiShowFilterEvents( $menu_slug, $results_events, $search_event_id ); 472 474 cwsiAdminInviteShowInviteSettings( 473 475 $menu_slug, … … 477 479 $search_event_id 478 480 ); 479 cwsiAdminShowSendTestInviteEmail( 480 $menu_slug, 481 $results, 482 "invite", 483 $search_event_id 484 ); 481 cwsiAdminShowSendTestInviteEmail( $menu_slug, $results, "invite" ); 485 482 } else { 486 483 echo wp_kses( wp_unslash( nl2br( $message ) ), cwsi_invites_allowed_html() ); … … 542 539 // Display functions 543 540 require_once plugin_dir_path( __FILE__ ) . 'partials/cwsi-invites-admin-display.php'; 544 cws lShowFilterEvents( $menu_slug, $results_events, $search_event_id );541 cwsiShowFilterEvents( $menu_slug, $results_events, $search_event_id ); 545 542 cwsiAdminInviteShowConfirmationSettings( 546 543 $menu_slug, … … 602 599 $results_recips = cwsiGetInvitesNotEmailed( $search_event_id ); 603 600 // Display form 604 cws lShowFilterEvents( $menu_slug, $results_events, $search_event_id );601 cwsiShowFilterEvents( $menu_slug, $results_events, $search_event_id ); 605 602 cwsiShowInvitesSendEmails( 606 603 $menu_slug, … … 652 649 $results_null = cwsiGetNullInvitesResponses( $search_event_id ); 653 650 // Display form 654 cws lShowFilterEvents( $menu_slug, $results_events, $search_event_id );651 cwsiShowFilterEvents( $menu_slug, $results_events, $search_event_id ); 655 652 cwsiShowInvitesViewResponses( 656 653 $menu_slug, -
cwsi-invites/trunk/admin/partials/cwsi-invites-admin-display.php
r3235662 r3469699 373 373 374 374 // Display search and filter form for events 375 function cws lShowFilterEvents( $menu_slug, $results, $search_event_id ) {375 function cwsiShowFilterEvents( $menu_slug, $results, $search_event_id ) { 376 376 echo ' 377 377 <div class="cwsi_admin cwsi_noprint"> … … 822 822 'text_area_name' => 'email_body', 823 823 'textarea_rows' => get_option( 'default_post_edit_rows', 10 ), 824 'quicktags' => true,825 824 'tinymce' => true, 826 825 ); … … 950 949 'text_area_name' => 'email_body', 951 950 'textarea_rows' => get_option( 'default_post_edit_rows', 10 ), 952 'quicktags' => true,953 951 'tinymce' => true, 954 952 ); … … 1156 1154 ), 1157 1155 'text_area_name' => 'email_body', 1158 'quicktags' => true,1159 1156 'tinymce' => true, 1160 1157 ); … … 1236 1233 if ( $message_type == "confirmation" ) { 1237 1234 echo '<p><strong>Email Body If No</strong></p>'; 1238 echo wp_kses( wp_unslash( nl2br( $settings->email_body_2 ) ), cwsi_invites_allowed_html() ); 1235 if (isset($settings->email_body_2)) { 1236 echo wp_kses( wp_unslash( nl2br( $settings->email_body_2 ) ), cwsi_invites_allowed_html() ); 1237 } 1239 1238 } 1240 1239 echo '<p><strong>To Email Address:</strong> <input type="email" name="email_to" maxlength="150" autocomplete="off" required value="" style="width:60%"; /></p> … … 1389 1388 ), 1390 1389 'text_area_name' => 'email_body', 1391 'quicktags' => true,1392 1390 'tinymce' => true, 1393 1391 ); … … 1411 1409 ), 1412 1410 'text_area_name' => 'email_body_2', 1413 'quicktags' => true,1414 1411 'tinymce' => true, 1415 1412 ); -
cwsi-invites/trunk/cwsi-invites.php
r3286964 r3469699 18 18 * Requires at least: 6.3 19 19 * Requires PHP: 8.0 20 * Version: 1. 4.120 * Version: 1.5.1 21 21 * Author: Charlene's Web Services 22 22 * Author URI: https://charlenesweb.ca … … 43 43 if ( !isset( $ci_fs ) ) { 44 44 // Include Freemius SDK. 45 require_once dirname( __FILE__ ) . '/ freemius/start.php';45 require_once dirname( __FILE__ ) . '/vendor/freemius/start.php'; 46 46 $ci_fs = fs_dynamic_init( array( 47 47 'id' => '17787', … … 69 69 * First release 1.0.0 and then using SemVer - https://semver.org X.Y.Z (Major.Minor.Patch) 70 70 */ 71 define( 'CWSI_INVITES_VERSION', '1. 4.1' );71 define( 'CWSI_INVITES_VERSION', '1.5' ); 72 72 define( 'CWSI_INVITES_SRC_DIR', dirname( __FILE__ ) ); 73 73 /** … … 92 92 // And here goes the uninstallation function: 93 93 function cwsi_invites_uninstall() { 94 // do not delete the tables 94 global $wpdb; 95 global $wpdb; 96 $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "cwsi_events" ); 97 // phpcs:ignore WordPress.DB.DirectDatabaseQuery 98 $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "cwsi_events_invitees" ); 99 // phpcs:ignore WordPress.DB.DirectDatabaseQuery 100 $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "cwsi_invites" ); 101 // phpcs:ignore WordPress.DB.DirectDatabaseQuery 102 $wpdb->query( "DROP TABLE IF EXISTS " . $wpdb->prefix . "cwsi_invitesettings" ); 103 // phpcs:ignore WordPress.DB.DirectDatabaseQuery 95 104 } 96 105 -
cwsi-invites/trunk/includes/class-cwsi-invites.php
r3286964 r3469699 72 72 $this->version = CWSI_INVITES_VERSION; 73 73 } else { 74 $this->version = '1. 4.1';74 $this->version = '1.5.1'; 75 75 } 76 76 $this->plugin_name = 'cwsi-invites';
Note: See TracChangeset
for help on using the changeset viewer.