primo commit
This commit is contained in:
		
							
								
								
									
										186
									
								
								components/com_jem/views/attendees/tmpl/responsive/addusers.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										186
									
								
								components/com_jem/views/attendees/tmpl/responsive/addusers.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,186 @@ | ||||
| <?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; | ||||
|  | ||||
| use Joomla\CMS\Factory; | ||||
| use Joomla\CMS\Language\Text; | ||||
| use Joomla\CMS\HTML\HTMLHelper; | ||||
| use Joomla\CMS\Router\Route; | ||||
| use Joomla\CMS\Session\Session; | ||||
| use Joomla\CMS\Form\Form; | ||||
|  | ||||
| $function = Factory::getApplication()->input->getCmd('function', 'jSelectUsers'); | ||||
| $checked = 0; | ||||
|  | ||||
| HTMLHelper::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR.'/helpers/html'); | ||||
|  | ||||
| // Get the form. | ||||
| Form::addFormPath(JPATH_COMPONENT . '/models/forms'); | ||||
| $form = Form::getInstance('com_jem.addusers', 'addusers'); | ||||
|  | ||||
| if (empty($form)) { | ||||
| 	return false; | ||||
| } | ||||
| ?> | ||||
|  | ||||
| <script> | ||||
| 	function tableOrdering( order, dir, view ) | ||||
| 	{ | ||||
| 		var form = document.getElementById("adminForm"); | ||||
|  | ||||
| 		form.filter_order.value 	= order; | ||||
| 		form.filter_order_Dir.value	= dir; | ||||
| 		form.submit( view ); | ||||
| 	} | ||||
| </script> | ||||
| <script> | ||||
| 	function checkList(form) | ||||
| 	{ | ||||
| 		var r='', i, n, e; | ||||
| 		for (i=0, n=form.elements.length; i<n; i++) | ||||
| 		{ | ||||
| 			e = form.elements[i]; | ||||
| 			if (e.type == 'checkbox' && e.id.indexOf('cb') === 0 && e.checked) | ||||
| 			{ | ||||
| 				if (r) { r += ','; } | ||||
| 				r += e.value; | ||||
| 			} | ||||
| 		} | ||||
| 		return r; | ||||
| 	} | ||||
| </script> | ||||
|  | ||||
| <div id="jem" class="jem_select_users"> | ||||
| 	<h1 class='componentheading'> | ||||
| 		<?php echo Text::_('COM_JEM_SELECT_USERS_AND_STATUS'); ?> | ||||
| 	</h1> | ||||
|  | ||||
| 	<div class="clr"></div> | ||||
|  | ||||
| 	<form action="<?php echo Route::_('index.php?option=com_jem&view=attendees&layout=addusers&tmpl=component&function='.$this->escape($function).'&id='.$this->event->id.'&'.Session::getFormToken().'=1'); ?>" method="post" name="adminForm" id="adminForm"> | ||||
|  | ||||
| 		<?php if(1) : ?> | ||||
|     <div class="jem-row valign-baseline"> | ||||
|       <div id="jem_filter" class="jem-form jem-row jem-justify-start"> | ||||
|         <div> | ||||
|           <?php | ||||
|           echo '<label for="filter_type">'.Text::_('COM_JEM_FILTER').'</label>'; | ||||
|           ?> | ||||
|         </div> | ||||
|         <div class="jem-row jem-justify-start jem-nowrap"> | ||||
|           <?php echo $this->searchfilter; ?> | ||||
|           <input type="text" name="filter_search" id="filter_search" value="<?php echo $this->lists['search']; ?>" class="inputbox" onChange="document.adminForm.submit();" /> | ||||
|         </div> | ||||
|         <div class="jem-row jem-justify-start jem-nowrap"> | ||||
|           <button type="submit" class="pointer btn btn-primary"><?php echo Text::_('JSEARCH_FILTER_SUBMIT'); ?></button> | ||||
|           <button type="button" class="pointer btn btn-secondary" onclick="document.getElementById('filter_search').value='';this.form.submit();"><?php echo Text::_('JSEARCH_FILTER_CLEAR'); ?></button> | ||||
|         </div> | ||||
|       <div class="jem-row jem-justify-start jem-nowrap"> | ||||
|         <div> | ||||
|           <?php echo '<label for="limit">'.Text::_('COM_JEM_DISPLAY_NUM').'</label> '; ?> | ||||
|         </div> | ||||
|         <div> </div> | ||||
|         <div> | ||||
|           <?php echo $this->pagination->getLimitBox(); ?> | ||||
|         </div> | ||||
|       </div> | ||||
|  </div> | ||||
|  | ||||
|     </div> | ||||
| 		<?php endif; ?> | ||||
|  | ||||
|     <hr class="jem-hr"/> | ||||
|  | ||||
|     <div class="jem-sort jem-sort-small"> | ||||
|       <div class="jem-list-row jem-small-list"> | ||||
|         <div class="sectiontableheader jem-users-number"><?php echo Text::_('COM_JEM_NUM'); ?></div> | ||||
|         <div class="sectiontableheader jem-users-checkall"><input type="checkbox" name="checkall-toggle" value="" title="<?php echo Text::_('JGLOBAL_CHECK_ALL'); ?>" onclick="Joomla.checkAll(this)" /></div> | ||||
|         <div class="sectiontableheader jem-users-name"><?php echo Text::_('COM_JEM_NAME'); ?></div> | ||||
|         <div class="sectiontableheader jem-users-state"><?php echo Text::_('COM_JEM_STATUS'); ?></div> | ||||
|                 <div class="sectiontableheader jem-users-state"><?php echo Text::_('COM_JEM_PLACES'); ?></div> | ||||
|       </div> | ||||
|     </div> | ||||
|  | ||||
|     <ul class="eventlist eventtable"> | ||||
|       <?php if (empty($this->rows)) : ?> | ||||
|         <li class="jem-event jem-list-row jem-small-list"><?php echo Text::_('COM_JEM_NOUSERS'); ?></li> | ||||
|       <?php else :?> | ||||
|         <?php foreach ($this->rows as $i => $row) : ?> | ||||
|           <li class="jem-event jem-list-row jem-small-list row<?php echo $i % 2; ?>"> | ||||
|             <div class="jem-event-info-small jem-users-number"> | ||||
|               <?php echo $this->pagination->getRowOffset( $i ); ?> | ||||
|             </div> | ||||
|  | ||||
|             <div class="jem-event-info-small jem-users-checkall"> | ||||
|               <?php echo HTMLHelper::_('grid.id', $i, $row->id); ?> | ||||
|             </div> | ||||
|  | ||||
|             <div class="jem-event-info-small jem-users-name"> | ||||
|               <?php echo $this->escape($row->name); ?> | ||||
|             </div> | ||||
|  | ||||
|             <div class="jem-event-info-small jem-users-state"> | ||||
|               <?php echo jemhtml::toggleAttendanceStatus( 0, $row->status, false); ?> | ||||
|             </div> | ||||
|  | ||||
|             <div class="jem-event-info-small jem-users-places"> | ||||
| 				<?php echo $this->escape($row->places); ?> | ||||
|             </div> | ||||
|           </li> | ||||
|         <?php endforeach; ?> | ||||
|       <?php endif; ?> | ||||
|     </ul> | ||||
|  | ||||
|         <hr class="jem-hr"/> | ||||
|  | ||||
| 		<?php | ||||
| 		if($this->event->maxbookeduser!=0) | ||||
| 		{ | ||||
| 			$placesavailableuser = $this->event->maxbookeduser; | ||||
| 		}else{ | ||||
| 			$placesavailableuser= null; | ||||
| 		} | ||||
| 		?> | ||||
|  | ||||
|         <div class="jem-row jem-justify-start valign-baseline"> | ||||
|             <div class="choose-status"> | ||||
| 				<?php echo Text::_('COM_JEM_SELECT');?> <?php echo $form->getLabel('status'); ?> <?php echo $form->getInput('status'); ?> | ||||
|             </div> | ||||
|             <div class="choose-places"> | ||||
| 				<?php echo Text::_('COM_JEM_SELECT');?> <?php echo Text::_('COM_JEM_PLACES'); ?> <input id="places" name="places" type="number" style="text-align: center; width:auto;" value="<?php echo $this->event->minbookeduser; ?>" max="<?php echo ($placesavailableuser > 0 ? $placesavailableuser : ($placesavailableuser ?? '')); ?>" min="<?php echo $this->event->minbookeduser; ?>"> | ||||
|             </div> | ||||
|             <?php if ($this->event->recurrence_type && $this->event->seriesbooking): ?> | ||||
|                 <div class="choose-places"> | ||||
|                     <?php echo Text::_('COM_JEM_SERIES_BOOKED').':'; ?> | ||||
|                     <input type="checkbox" id="seriesbooking" name="seriesbooking" /> | ||||
|                 </div> | ||||
|             <?php else : ?> | ||||
|                 <input type="hidden" name="seriesbooking" value=-1 /> | ||||
|             <?php endif; ?> | ||||
|         </div> | ||||
|  | ||||
| 		<input type="hidden" name="task" value="selectusers" /> | ||||
| 		<input type="hidden" name="option" value="com_jem" /> | ||||
| 		<input type="hidden" name="tmpl" value="component" /> | ||||
| 		<input type="hidden" name="function" value="<?php echo $this->escape($function); ?>" /> | ||||
| 		<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" /> | ||||
| 		<input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_Dir']; ?>" /> | ||||
| 		<input type="hidden" name="boxchecked" value="<?php echo $checked; ?>" /> | ||||
|  | ||||
| 	<div class="pagination"> | ||||
| 		<?php echo $this->pagination->getPagesLinks(); ?> | ||||
| 	</div> | ||||
|  | ||||
|     <div class="jem-row jem-justify-end"> | ||||
|         <button type="button" class="pointer btn btn-primary" onclick="if (window.parent) window.parent.<?php echo $this->escape($function);?>_newusers(checkList(document.adminForm),document.adminForm.boxchecked.value,document.adminForm.status.value, document.adminForm.places.value, <?php echo $this->event->id; ?>, document.adminForm.seriesbooking.value, '<?php echo Session::getFormToken(); ?>');"> | ||||
|       <?php echo Text::_('COM_JEM_SAVE'); ?> | ||||
|     </button> | ||||
|     </div> | ||||
|     </form> | ||||
| </div> | ||||
		Reference in New Issue
	
	Block a user