*/ class MEC_feature_locations extends MEC_base { public $factory; public $main; public $settings; /** * Constructor method * @author Webnus */ public function __construct() { // Import MEC Factory $this->factory = $this->getFactory(); // Import MEC Main $this->main = $this->getMain(); // MEC Settings $this->settings = $this->main->get_settings(); } /** * Initialize locations feature * @author Webnus */ public function init() { $this->factory->action('init', array($this, 'register_taxonomy'), 20); $this->factory->action('mec_location_edit_form_fields', array($this, 'edit_form')); $this->factory->action('mec_location_add_form_fields', array($this, 'add_form')); $this->factory->action('edited_mec_location', array($this, 'save_metadata')); $this->factory->action('created_mec_location', array($this, 'save_metadata')); $this->factory->action('mec_metabox_details', array($this, 'meta_box_location'), 30); if(!isset($this->settings['fes_section_location']) or (isset($this->settings['fes_section_location']) and $this->settings['fes_section_location'])) $this->factory->action('mec_fes_metabox_details', array($this, 'meta_box_location'), 30); $this->factory->filter('manage_edit-mec_location_columns', array($this, 'filter_columns')); $this->factory->filter('manage_mec_location_custom_column', array($this, 'filter_columns_content'), 10, 3); $this->factory->action('save_post', array($this, 'save_event'), 1); } /** * Registers location taxonomy * @author Webnus */ public function register_taxonomy() { $singular_label = $this->main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite')); $plural_label = $this->main->m('taxonomy_locations', __('Locations', 'modern-events-calendar-lite')); register_taxonomy( 'mec_location', $this->main->get_main_post_type(), array( 'label'=>$plural_label, 'labels'=>array( 'name'=>$plural_label, 'singular_name'=>$singular_label, 'all_items'=>sprintf(__('All %s', 'modern-events-calendar-lite'), $plural_label), 'edit_item'=>sprintf(__('Edit %s', 'modern-events-calendar-lite'), $singular_label), 'view_item'=>sprintf(__('View %s', 'modern-events-calendar-lite'), $singular_label), 'update_item'=>sprintf(__('Update %s', 'modern-events-calendar-lite'), $singular_label), 'add_new_item'=>sprintf(__('Add New %s', 'modern-events-calendar-lite'), $singular_label), 'new_item_name'=>sprintf(__('New %s Name', 'modern-events-calendar-lite'), $singular_label), 'popular_items'=>sprintf(__('Popular %s', 'modern-events-calendar-lite'), $plural_label), 'search_items'=>sprintf(__('Search %s', 'modern-events-calendar-lite'), $plural_label), 'back_to_items'=>sprintf(__('← Back to %s', 'modern-events-calendar-lite'), $plural_label), 'not_found'=>sprintf(__('no %s found.', 'modern-events-calendar-lite'), strtolower($plural_label)), ), 'rewrite'=>array('slug'=>'events-location'), 'public'=>false, 'show_ui'=>true, 'hierarchical'=>false, ) ); register_taxonomy_for_object_type('mec_location', $this->main->get_main_post_type()); } /** * Show edit form of location taxonomy * @author Webnus * @param object $term */ public function edit_form($term) { $this->main->load_map_assets(true); $address = get_metadata('term', $term->term_id, 'address', true); $latitude = get_metadata('term', $term->term_id, 'latitude', true); $longitude = get_metadata('term', $term->term_id, 'longitude', true); $url = get_metadata('term', $term->term_id, 'url', true); $thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true); // Map Options $status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1; $api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : ''; ?>
'; ?>
*/ public function add_form() { $this->main->load_map_assets(true); // Map Options $status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1; $api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : ''; ?>
* @param int $term_id */ public function save_metadata($term_id) { // Quick Edit if(!isset($_POST['address'])) return; $address = isset($_POST['address']) ? sanitize_text_field($_POST['address']) : ''; $latitude = isset($_POST['latitude']) ? floatval(sanitize_text_field($_POST['latitude'])) : '0'; $longitude = isset($_POST['longitude']) ? floatval(sanitize_text_field($_POST['longitude'])) : '0'; $url = (isset($_POST['url']) and trim($_POST['url'])) ? esc_url($_POST['url']) : ''; $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : ''; // Geo Point is Empty or Address Changed if(!floatval($latitude) or !floatval($longitude) or (trim($address) and ($address != get_term_meta($term_id, 'address', true)))) { $geo_point = $this->main->get_lat_lng($address); if(isset($geo_point[0]) and trim($geo_point[0])) $latitude = $geo_point[0]; if(isset($geo_point[1]) and trim($geo_point[1])) $longitude = $geo_point[1]; } update_term_meta($term_id, 'address', $address); update_term_meta($term_id, 'latitude', $latitude); update_term_meta($term_id, 'longitude', $longitude); update_term_meta($term_id, 'url', $url); update_term_meta($term_id, 'thumbnail', $thumbnail); do_action('mec_save_location_extra_fields', $term_id); } /** * Filter columns of location taxonomy * @author Webnus * @param array $columns * @return array */ public function filter_columns($columns) { unset($columns['name']); unset($columns['slug']); unset($columns['description']); unset($columns['posts']); $columns['id'] = __('ID', 'modern-events-calendar-lite'); $columns['name'] = __('Location', 'modern-events-calendar-lite'); $columns['address'] = __('Address', 'modern-events-calendar-lite'); $columns['posts'] = __('Count', 'modern-events-calendar-lite'); $columns['slug'] = __('Slug', 'modern-events-calendar-lite'); return $columns; } /** * Filter content of location taxonomy columns * @author Webnus * @param string $content * @param string $column_name * @param int $term_id * @return string */ public function filter_columns_content($content, $column_name, $term_id) { switch($column_name) { case 'id': $content = $term_id; break; case 'address': $content = get_metadata('term', $term_id, 'address', true); break; default: break; } return $content; } /** * Show location meta box * @author Webnus * @param object $post */ public function meta_box_location($post) { $this->main->load_map_assets(); $locations = get_terms('mec_location', array('orderby'=>'name', 'hide_empty'=>'0')); $dont_show_map = get_post_meta($post->ID, 'mec_dont_show_map', true); $location_id = get_post_meta($post->ID, 'mec_location_id', true); $location_id = apply_filters('wpml_object_id', $location_id, 'mec_location', true); $location_ids = get_post_meta($post->ID, 'mec_additional_location_ids', true); if(!is_array($location_ids)) $location_ids = array(); $additional_locations_status = (!isset($this->settings['additional_locations']) or (isset($this->settings['additional_locations']) and $this->settings['additional_locations'])) ? true : false; // Map Options $status = isset($this->settings['google_maps_status']) ? $this->settings['google_maps_status'] : 1; $api_key = isset($this->settings['google_maps_api_key']) ? $this->settings['google_maps_api_key'] : ''; ?>

main->m('taxonomy_location', __('Location', 'modern-events-calendar-lite'))); ?>

getPRO()): ?>
/>

main->m('other_locations', __('Other Locations', 'modern-events-calendar-lite')); ?>

* @param int $post_id * @return boolean */ public function save_event($post_id) { // Check if our nonce is set. if(!isset($_POST['mec_event_nonce'])) return false; // Verify that the nonce is valid. if(!wp_verify_nonce(sanitize_text_field($_POST['mec_event_nonce']), 'mec_event_data')) return false; // If this is an autosave, our form has not been submitted, so we don't want to do anything. if(defined('DOING_AUTOSAVE') and DOING_AUTOSAVE) return false; $action = (isset($_POST['action']) ? $_POST['action'] : ''); if($action === 'mec_fes_form') return false; // Get Modern Events Calendar Data $_mec = isset($_POST['mec']) ? $_POST['mec'] : array(); // Selected a saved location if(isset($_mec['location_id']) and $_mec['location_id']) { // Set term to the post wp_set_object_terms($post_id, (int) $_mec['location_id'], 'mec_location'); return true; } $address = (isset($_mec['location']['address']) and trim($_mec['location']['address'])) ? sanitize_text_field($_mec['location']['address']) : ''; $name = (isset($_mec['location']['name']) and trim($_mec['location']['name'])) ? sanitize_text_field($_mec['location']['name']) : (trim($address) ? $address : 'Location Name'); $term = get_term_by('name', $name, 'mec_location'); // Term already exists if(is_object($term) and isset($term->term_id)) { // Set term to the post wp_set_object_terms($post_id, (int) $term->term_id, 'mec_location'); return true; } $term = wp_insert_term($name, 'mec_location'); // An error ocurred if(is_wp_error($term)) { #TODO show a message to user return false; } $location_id = $term['term_id']; if(!$location_id) return false; // Set Location ID to the parameters $_POST['mec']['location_id'] = $location_id; // Set term to the post wp_set_object_terms($post_id, (int) $location_id, 'mec_location'); $latitude = (isset($_mec['location']['latitude']) and trim($_mec['location']['latitude'])) ? sanitize_text_field($_mec['location']['latitude']) : 0; $longitude = (isset($_mec['location']['longitude']) and trim($_mec['location']['longitude'])) ? sanitize_text_field($_mec['location']['longitude']) : 0; $url = (isset($_mec['location']['url']) and trim($_mec['location']['url'])) ? esc_url($_mec['location']['url']) : ''; $thumbnail = (isset($_mec['location']['thumbnail']) and trim($_mec['location']['thumbnail'])) ? sanitize_text_field($_mec['location']['thumbnail']) : ''; if((!trim($latitude) or !trim($longitude)) and trim($address)) { $geo_point = $this->main->get_lat_lng($address); if(isset($geo_point[0]) and trim($geo_point[0])) $latitude = $geo_point[0]; if(isset($geo_point[1]) and trim($geo_point[1])) $longitude = $geo_point[1]; } update_term_meta($location_id, 'address', $address); update_term_meta($location_id, 'latitude', $latitude); update_term_meta($location_id, 'longitude', $longitude); update_term_meta($location_id, 'url', $url); update_term_meta($location_id, 'thumbnail', $thumbnail); return true; } }