Файловый менеджер - Редактировать - /home/harasnat/www/labour/wp-content/plugins/events-manager/multilingual/em-ml-admin.php
Назад
<?php class EM_ML_Admin{ public static function init(){ add_action('add_meta_boxes_'.EM_POST_TYPE_EVENT, 'EM_ML_Admin::meta_boxes',100); add_action('add_meta_boxes_event-recurring', 'EM_ML_Admin::meta_boxes', 100, 1); add_action('add_meta_boxes_'.EM_POST_TYPE_LOCATION, 'EM_ML_Admin::meta_boxes', 100, 1); if( !defined('EM_SETTINGS_TABS') && count(EM_ML::$langs) > 3 ) define('EM_SETTINGS_TABS',true); } /** * Returns array of settings page names used in $_REQUEST['page'] that must always be served in the original language of the blog * @return array */ public static function settings_pages(){ return apply_filters('em_ml_admin_settings_pages', array('events-manager-options')); } public static function meta_boxes(){ global $EM_Event, $EM_Location, $wp_meta_boxes; //decide if it's a master event, if not then hide the meta boxes if( !empty($EM_Event) && !EM_ML::is_original($EM_Event) ){ //remove meta boxes for events remove_meta_box('em-event-when', EM_POST_TYPE_EVENT, 'side'); remove_meta_box('em-event-recurring', 'event-recurring', 'normal'); remove_meta_box('em-event-when-recurring', 'event-recurring', 'side'); remove_meta_box('em-event-where', EM_POST_TYPE_EVENT, 'normal'); remove_meta_box('em-event-where', 'event-recurring', 'normal'); remove_meta_box('em-event-bookings', EM_POST_TYPE_EVENT, 'normal'); remove_meta_box('em-event-bookings', 'event-recurring', 'normal'); remove_meta_box('em-event-bookings-stats', EM_POST_TYPE_EVENT, 'side'); remove_meta_box('em-event-bookings-stats', 'event-recurring', 'side'); remove_meta_box('em-event-group', EM_POST_TYPE_EVENT, 'side'); remove_meta_box('em-event-group', 'event-recurring', 'side'); foreach( array('em-event-when', 'em-event-recurring', 'em-event-when-recurring', 'em-event-where', 'em-event-bookings', 'em-event-bookings-stats', 'em-event-group') as $box_name ){ foreach( array(EM_POST_TYPE_EVENT, 'event-recurring') as $type ){ $screen_name = convert_to_screen($type)->id; foreach( array('core', 'default', 'high', 'low') as $priority ){ if( isset($wp_meta_boxes[$screen_name]['side'][$priority][$box_name]) ) unset($wp_meta_boxes[$screen_name]['side'][$priority][$box_name]); if( isset($wp_meta_boxes[$screen_name]['normal'][$priority][$box_name]) ) unset($wp_meta_boxes[$screen_name]['normal'][$priority][$box_name]); } } } if( em_get_option('dbem_attributes_enabled', true) ){ remove_meta_box('em-event-attributes', EM_POST_TYPE_EVENT, 'normal'); remove_meta_box('em-event-attributes', 'event-recurring', 'normal'); add_meta_box('em-event-attributes', __('Attributes','events-manager'), 'EM_ML_Admin::event_meta_box_attributes',EM_POST_TYPE_EVENT, 'normal','default'); add_meta_box('em-event-attributes', __('Attributes','events-manager'), 'EM_ML_Admin::event_meta_box_attributes','event-recurring', 'normal','default'); } //add translation-specific meta boxes add_meta_box('em-event-translation', __('Translated Event Information','events-manager'), 'EM_ML_Admin::meta_box_translated_event',EM_POST_TYPE_EVENT, 'side','high'); add_meta_box('em-event-translation', __('Translated Event Information','events-manager'), 'EM_ML_Admin::meta_box_translated_event','event-recurring', 'side','high'); $event = EM_ML::get_original_event($EM_Event); if( $event->event_rsvp ){ add_meta_box('em-event-bookings-translation', __('Bookings/Registration','events-manager'), 'EM_ML_Admin::meta_box_bookings_translation',EM_POST_TYPE_EVENT, 'normal','high'); add_meta_box('em-event-bookings-translation', __('Bookings/Registration','events-manager'), 'EM_ML_Admin::meta_box_bookings_translation','event-recurring', 'normal','high'); } } //locations, decide if it's a master location, if not then hide the meta boxes if( !empty($EM_Location) && !EM_ML::is_original($EM_Location) ){ //add translation-specific meta boxes add_meta_box('em-event-translation', __('Translated Location Information','events-manager'), 'EM_ML_Admin::meta_box_translated_location',EM_POST_TYPE_LOCATION, 'side','high'); //remove other meta boxes remove_meta_box('em-location-where', EM_POST_TYPE_LOCATION, 'normal'); add_meta_box('em-location-where', __('Where','events-manager'), array('EM_ML_Admin','meta_box_location_where'),EM_POST_TYPE_LOCATION, 'normal','high'); if( em_get_option('dbem_location_attributes_enabled') ){ remove_meta_box('em-location-attributes', EM_POST_TYPE_LOCATION, 'normal'); add_meta_box('em-location-attributes', __('Attributes','events-manager'), 'EM_ML_Admin::location_meta_box_attributes',EM_POST_TYPE_LOCATION, 'normal','default'); } } } public static function meta_box_translated_event(){ global $EM_Event; //output the _emnonce because it won't be output due to missing meta boxes ?> <input type="hidden" name="_emnonce" value="<?php echo wp_create_nonce('edit_event'); ?>" /> <p> <?php $original_link = EM_ML::get_original_event($EM_Event)->get_edit_url(); $original_link = apply_filters('em_ml_admin_original_event_link',$original_link); echo __('This is a translated event, therefore your time, location and booking information is handled by your original event translation.', 'events-manager'); echo ' <a href="'.esc_url($original_link).'">'.__('See original translation.','events-manager').'</a>'; ?> </p> <?php } public static function meta_box_translated_location(){ global $EM_Location; //output the _emnonce because it won't be output due to missing meta boxes ?> <input type="hidden" name="_emnonce" value="<?php echo wp_create_nonce('edit_location'); ?>" /> <p> <?php $original_link = EM_ML::get_original_location($EM_Location)->get_edit_url(); $original_link = apply_filters('em_ml_admin_original_location_link',$original_link); echo __('This is a translated location, so address information is handled by your original location translation. You can provide translations for certain fields which will override the original translation.', 'events-manager'); echo ' <a href="'.esc_url($original_link).'">'.__('See original translation.','events-manager').'</a>'; ?> </p> <?php } public static function meta_box_bookings_translation(){ global $EM_Event; $event = EM_ML::get_original_event($EM_Event); $lang = EM_ML::$current_language; ?> <p><em><?php esc_html_e('Below are translations for your tickets. If left blank, the language of the original event will be used.','events-manager'); ?></em></p> <table class="event-bookings-ticket-translation form-table"> <?php foreach( $event->get_tickets()->tickets as $EM_Ticket ){ /* @var $EM_Ticket EM_Ticket */ $name = !empty($EM_Ticket->ticket_meta['langs'][$lang]['ticket_name']) ? $EM_Ticket->ticket_meta['langs'][$lang]['ticket_name'] : ''; $description = !empty($EM_Ticket->ticket_meta['langs'][$lang]['ticket_description']) ? $EM_Ticket->ticket_meta['langs'][$lang]['ticket_description']: ''; $desc_ph = !empty($EM_Ticket->description) ? $EM_Ticket->description:__('Description','events-manager'); ?> <tbody> <tr> <td><strong><?php echo esc_html($EM_Ticket->ticket_name); ?></strong></td> <td> <input placeholder="<?php echo esc_attr($EM_Ticket->ticket_name); ?>" type="text" name="ticket_translations[<?php echo $EM_Ticket->ticket_id ?>][ticket_name]" value="<?php echo esc_attr($name); ?>" /> <br/> <textarea placeholder="<?php echo esc_attr($desc_ph); ?>" type="text" name="ticket_translations[<?php echo $EM_Ticket->ticket_id ?>][ticket_description]"><?php echo esc_html($description); ?></textarea> </td> </tr> </tbody> <?php } ?> </table> <?php } public static function meta_box_location_where(){ global $EM_Location; /* @var EM_Location $EM_Location */ $location = EM_ML::get_original_location($EM_Location); $location_address = $EM_Location->location_address == $location->location_address || !$EM_Location->location_address ? '' : $EM_Location->location_address; $location_town = $EM_Location->location_town == $location->location_town || !$EM_Location->location_town ? '' : $EM_Location->location_town; $location_state = $EM_Location->location_state == $location->location_state || !$EM_Location->location_state ? '' : $EM_Location->location_state; $location_region = $EM_Location->location_region == $location->location_region || !$EM_Location->location_region ? '' : $EM_Location->location_region; ?> <p><em><?php esc_html_e('Below are translations for your location address. If left blank, the language of the original event will be used.','events-manager'); ?></em></p> <table class="event-bookings-location-translation form-table"> <tbody> <tr class="em-location-data-address"> <th><?php _e ( 'Address:', 'events-manager')?> </th> <td> <input id="location-address" type="text" name="location_address" value="<?php echo esc_attr($location_address); ?>" placeholder="<?php echo esc_attr($location->location_address); ?>"> </td> </tr> <tr class="em-location-data-town"> <th><?php _e ( 'City/Town:', 'events-manager')?> </th> <td> <input id="location-town" type="text" name="location_town" value="<?php echo esc_attr($location_town); ?>" placeholder="<?php echo esc_attr($location->location_town); ?>"> </td> </tr> <tr class="em-location-data-state"> <th><?php _e ( 'State/County:', 'events-manager')?> </th> <td> <input id="location-state" type="text" name="location_state" value="<?php echo esc_attr($location_state); ?>" placeholder="<?php echo esc_attr($location->location_state); ?>"> </td> </tr> <tr class="em-location-data-region"> <th><?php _e ( 'Region:', 'events-manager')?> </th> <td> <input id="location-region" type="text" name="location_region" value="<?php echo esc_attr($location_region); ?>" placeholder="<?php echo esc_attr($location->location_region); ?>"> </td> </tr> </tbody> </table> <?php } public static function event_meta_box_attributes(){ global $EM_Event; //get original location for attributes $event = EM_ML::get_original_event($EM_Event); EM_ML_IO::event_merge_original_attributes($EM_Event, $event); em_locate_template('forms/event/attributes.php',true); } public static function location_meta_box_attributes(){ global $EM_Location; //get original location for attributes $location = EM_ML::get_original_location($EM_Location); EM_ML_IO_Locations::location_merge_original_attributes($EM_Location, $location); em_locate_template('forms/location/attributes.php',true); } } EM_ML_Admin::init();
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка