File: /home/exhehbu/wp/wp-content/plugins/eventer/eventers/eventers-archive.php
<?php
$template_design = eventer_get_settings('eventer_archive_view');
$template_sidebar = eventer_get_settings('eventer_archive_sidebar');
$template_design = ($template_design!='')?$template_design:"1";
$ids = (isset($_REQUEST['eid']))?$_REQUEST['eid']:'';
switch($template_design)
{
case "1":
$content_output = '[eventer_list ids="'.$ids.'" type="1" count="10" pagination="yes"]';
break;
case "2":
$content_output = '[eventer_list ids="'.$ids.'" type="1" status="month" month_filter="1"]';
break;
case "3":
$content_output = '[eventer_list ids="'.$ids.'" type="1" month_filter="1" view="minimal" count="10" pagination="yes"]';
break;
case "4":
$content_output = '[eventer_list ids="'.$ids.'" type="1" view="minimal" status="month" month_filter="1"]';
break;
case "5":
$content_output = '[eventer_grid ids="'.$ids.'" type="1" background="" column="3" pagination="yes" count="10"]';
break;
}
echo do_shortcode($content_output);