66 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * @package    JEM
 | |
|  * @copyright  (C) 2013-2024 joomlaeventmanager.net
 | |
|  * @copyright  (C) 2005-2009 Christoph Lukes
 | |
|  * @license    https://www.gnu.org/licenses/gpl-3.0 GNU/GPL
 | |
|  */
 | |
| 
 | |
| defined('_JEXEC') or die;
 | |
| 
 | |
| ?>
 | |
| <div id="jem" class="jem_day<?php echo $this->pageclass_sfx;?>">
 | |
| 	<div class="buttons">
 | |
| 		<?php
 | |
| 		$btn_params = array('task' => $this->task, 'print_link' => $this->print_link);
 | |
| 		echo JemOutput::createButtonBar($this->getName(), $this->permissions, $btn_params);
 | |
| 		?>
 | |
| 	</div>
 | |
| 
 | |
| 	<?php if ($this->params->get('show_page_heading', 1)) : ?>
 | |
| 	<h1 class="componentheading">
 | |
| 		<?php echo $this->escape($this->params->get('page_heading')); ?>
 | |
| 	</h1>
 | |
| 	<?php endif; ?>
 | |
| 
 | |
| 	<div class="clr"> </div>
 | |
| 
 | |
| 	<?php if (isset($this->showdaydate)) : ?>
 | |
| 	<h2 class="jem">
 | |
| 		<?php echo $this->daydate; ?>
 | |
| 	</h2>
 | |
| 	<?php endif; ?>
 | |
| 	
 | |
| 	<!--introtext-->
 | |
| 	
 | |
| 	<?php if ($this->params->get('showintrotext')) : ?>
 | |
| 		<div class="description no_space floattext">
 | |
| 			<?php echo $this->params->get('introtext'); ?>
 | |
| 		</div>
 | |
| 	<?php endif; ?>
 | |
| 	
 | |
| 	<!--table-->
 | |
| 	<form action="<?php echo htmlspecialchars($this->action); ?>" method="post" name="adminForm" id="adminForm">
 | |
| 		<?php echo $this->loadTemplate('events_table'); ?>
 | |
| 		<p>
 | |
| 		<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" />
 | |
| 		<input type="hidden" name="filter_order_Dir" value="" />
 | |
| 		<input type="hidden" name="task" value="<?php echo $this->task; ?>" />
 | |
| 		<input type="hidden" name="view" value="day" />
 | |
| 		</p>
 | |
| 	</form>
 | |
| 	<?php if ($this->params->get('showfootertext')) : ?>
 | |
| 		<div class="description no_space floattext">
 | |
| 			<?php echo $this->params->get('footertext'); ?>
 | |
| 		</div>
 | |
| 	<?php endif; ?>
 | |
| 	<!--footer-->
 | |
| 	<div class="pagination">
 | |
| 		<?php echo $this->pagination->getPagesLinks(); ?>
 | |
| 	</div>
 | |
| 
 | |
| 	<div class="copyright">
 | |
| 		<?php echo JemOutput::footer( ); ?>
 | |
| 	</div>
 | |
| </div>
 |