PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
skins
/
full_calendar
<?php /** no direct access **/ defined('MECEXEC') or die(); // Inclue OWL Assets $this->main->load_owl_assets(); // Generating javascript code tpl $javascript = '<script type="text/javascript"> jQuery(document).ready(function() { jQuery("#mec_skin_'.$this->id.'").mecFullCalendar( { id: "'.$this->id.'", atts: "'.http_build_query(array('atts'=>$this->atts), '', '&').'", ajax_url: "'.admin_url('admin-ajax.php', NULL).'", sed_method: "'.$this->sed_method.'", image_popup: "'.$this->image_popup.'", sf: { container: "'.($this->sf_status ? '#mec_search_form_'.$this->id : '').'", }, skin: "'.$this->default_view.'", }); }); </script>'; // Include javascript code into the page if($this->main->is_ajax()) echo $javascript; else $this->factory->params('footer', $javascript); $styling = $this->main->get_styling(); $event_colorskin = (isset($styling['mec_colorskin'] ) || isset($styling['color'])) ? 'colorskin-custom' : ''; do_action('mec_start_skin' , $this->id); do_action('mec_full_skin_head'); ?> <div id="mec_skin_<?php echo $this->id; ?>" class="mec-wrap <?php echo $event_colorskin; ?> mec-full-calendar-wrap"> <div class="mec-search-form mec-totalcal-box"> <?php if($this->sf_status): ?> <?php $sf_month_filter = (isset($this->sf_options['month_filter']) ? $this->sf_options['month_filter'] : array()); $sf_category = (isset($this->sf_options['category']) ? $this->sf_options['category'] : array()); $sf_location = (isset($this->sf_options['location']) ? $this->sf_options['location'] : array()); $sf_organizer = (isset($this->sf_options['organizer']) ? $this->sf_options['organizer'] : array()); $sf_speaker = (isset($this->sf_options['speaker']) ? $this->sf_options['speaker'] : array()); $sf_tag = (isset($this->sf_options['tag']) ? $this->sf_options['tag'] : array()); $sf_label = (isset($this->sf_options['label']) ? $this->sf_options['label'] : array()); $sf_text_search = (isset($this->sf_options['text_search']) ? $this->sf_options['text_search'] : array()); $sf_month_filter_status = (isset($sf_month_filter['type']) and trim($sf_month_filter['type'])) ? true : false; $sf_category_status = (isset($sf_category['type']) and trim($sf_category['type'])) ? true : false; $sf_location_status = (isset($sf_location['type']) and trim($sf_location['type'])) ? true : false; $sf_organizer_status = (isset($sf_organizer['type']) and trim($sf_organizer['type'])) ? true : false; $sf_speaker_status = (isset($sf_speaker['type']) and trim($sf_speaker['type'])) ? true : false; $sf_tag_status = (isset($sf_tag['type']) and trim($sf_tag['type'])) ? true : false; $sf_label_status = (isset($sf_label['type']) and trim($sf_label['type'])) ? true : false; $sf_text_search_status = (isset($sf_text_search['type']) and trim($sf_text_search['type'])) ? true : false; // Status of Speakers Feature $speakers_status = (!isset($this->settings['speakers_status']) or (isset($this->settings['speakers_status']) and !$this->settings['speakers_status'])) ? false : true; $sf_columns = 8; ?> <?php if ( (!empty($sf_category) && $sf_category["type"] == 'dropdown') || (!empty($sf_location) && $sf_location["type"] == 'dropdown') || (!empty($sf_organizer) && $sf_organizer["type"] == 'dropdown') || (!empty($sf_speaker) && $sf_speaker["type"] == 'dropdown') || (!empty($sf_tag) && $sf_tag["type"] == 'dropdown') || (!empty($sf_label) && $sf_label["type"] == 'dropdown') ): $wrapper_class = 'class="mec-dropdown-wrap"'; else: $wrapper_class = ''; endif; ?> <div id="mec_search_form_<?php echo $this->id; ?>" <?php echo $wrapper_class; ?>> <?php if($sf_category_status): ?> <?php echo $this->sf_search_field('category', $sf_category); ?> <?php endif; ?> <?php if($sf_location_status): ?> <?php echo $this->sf_search_field('location', $sf_location); ?> <?php endif; ?> <?php if($sf_organizer_status): ?> <?php echo $this->sf_search_field('organizer', $sf_organizer); ?> <?php endif; ?> <?php if($sf_speaker_status and $speakers_status): ?> <?php echo $this->sf_search_field('speaker', $sf_speaker); ?> <?php endif; ?> <?php if($sf_tag_status): ?> <?php echo $this->sf_search_field('tag', $sf_tag); ?> <?php endif; ?> <?php if($sf_label_status): ?> <?php echo $this->sf_search_field('label', $sf_label); ?> <?php endif; ?> </div> <div id="mec_search_form_<?php echo $this->id; ?>"> <?php if($sf_month_filter_status): $sf_columns -= 3; ?> <div class="col-md-3"> <?php echo $this->sf_search_field('month_filter', $sf_month_filter); ?> </div> <?php endif; ?> <div class="col-md-<?php echo $sf_columns; ?>"> <?php if($sf_text_search_status): ?> <?php echo $this->sf_search_field('text_search', $sf_text_search); ?> <?php endif; ?> </div> <?php endif; ?> </div> <div class="col-md-4"> <div class="mec-totalcal-view"> <?php if($this->yearly): ?><span class="mec-totalcal-yearlyview<?php if($this->default_view == 'yearly') echo ' mec-totalcalview-selected'; ?>" data-skin="yearly"><?php _e('Yearly', 'mec'); ?></span><?php endif; ?> <?php if($this->monthly): ?><span class="mec-totalcal-monthlyview<?php if($this->default_view == 'monthly') echo ' mec-totalcalview-selected'; ?>" data-skin="monthly"><?php _e('Monthly', 'mec'); ?></span><?php endif; ?> <?php if($this->weekly): ?><span class="mec-totalcal-weeklyview<?php if($this->default_view == 'weekly') echo ' mec-totalcalview-selected'; ?>" data-skin="weekly"><?php _e('Weekly', 'mec'); ?></span><?php endif; ?> <?php if($this->daily): ?><span class="mec-totalcal-dailyview<?php if($this->default_view == 'daily') echo ' mec-totalcalview-selected'; ?>" data-skin="daily"><?php _e('Daily', 'mec'); ?></span><?php endif; ?> <?php if($this->list): ?><span class="mec-totalcal-listview<?php if($this->default_view == 'list') echo ' mec-totalcalview-selected'; ?>" data-skin="list"><?php _e('List', 'mec'); ?></span><?php endif; ?> </div> </div> </div> <div id="mec_full_calendar_container_<?php echo $this->id; ?>" class="mec-full-calendar-skin-container"> <?php echo $this->load_skin($this->default_view); ?> </div> </div>
[+]
..
[-] tpl.php
[edit]
[-] index.html
[edit]