����JFIF��x�x�����C�      ���C  �����"�������������� �������}�!1AQa"q2���#B��R��$3br� %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz�������������������������������������������������������������������������������� ������w�!1AQaq"2�B���� #3R�br� $4�%�&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz������������������������������������������������������������������������ ��?�����N����m?����j����EP��https Tiny File Manager | event-submitted.php
  • File: event-submitted.php
  • Full Path: /home/insidjam/public_html/SITE_/wp-content/plugins/wp-event-manager/templates/event-submitted.php
  • Date Modified: 01/07/2024 2:04 PM
  • File size: 990 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
global $wp_post_types;

switch($event->post_status) :

	case 'publish' :
		printf('<p class="post-submitted-success-green-message wpem-alert wpem-alert-success">'.__('%s listed successfully. To view your listing <a href="%s">click here</a>.', 'wp-event-manager').'</p>', esc_attr($wp_post_types['event_listing']->labels->singular_name), esc_url(get_permalink($event->ID)));
		break;
	case 'pending' :
		printf('<p class="post-submitted-success-green-message wpem-alert wpem-alert-success">'.__('%s submitted successfully. Your listing will be visible once approved.', 'wp-event-manager').'</p>', esc_attr($wp_post_types['event_listing']->labels->singular_name), esc_url(get_permalink($event->ID)));
		break;
	default :
		do_action('event_manager_event_submitted_content_' . str_replace('-', '_', sanitize_title($event->post_status)), $event);
		break;

endswitch;

do_action('event_manager_event_submitted_content_after', sanitize_title($event->post_status), $event);