AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/coopiak/amisdesseniors-fr/administrator/components/com_jlexreview/views/user/tmpl/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/coopiak/amisdesseniors-fr/administrator/components/com_jlexreview/views/user/tmpl/default.php
<?php
/**
 * @package		JLex Review
 * @version		4.2.3
 * @copyright	Copyright (c) 2013-2018 JLexArt. All rights reserved
 * @license		GNU General Public License version 2 or later;
 * @author		www.jlexart.com
 */

defined('_JEXEC') or die;
?>
<div id="jlexreview">
	<form action="<?=JUri::base(true)."/index.php?option=com_jlexreview&view=user"?>" 
	method="post" name="adminForm" id="adminForm" enctype="multipart/form-data">
		<?php if(JE_JVERSION=="J4"):?>
		<div class="btn-toolbar" style="margin-bottom:10px">
			<div class="btn-group">
				<div class="input-group">
					<input type="text" name="q" class="form-control" placeholder="Search" value="<?php echo $this->lists["query"] ;?>">
					<span class="input-group-append">
						<button type="submit" class="btn btn-primary"><span class="fas fa-search" aria-hidden="true"></span></button>
					</span>
				</div>
			</div>
		</div>
		<?php else:?>
		<div class="filter-box">
			<div class="pull-left js-stools">
				<div class="btn-wrapper input-append">
					<input type="text" name="q" value="<?php echo $this->lists["query"] ;?>" placeholder="Search">
					<button type="submit" class="btn">
						<span class="icon-search"></span>
					</button>
				</div>
			</div>
			<div class="clearfix"></div>
		</div>
		<?php endif;?>

		<div class="reviewBox nopadding">
			<table class="adminlist mftable" >
				<thead>
					<tr>
						<th width="30">#</th>
						<th width="30"><input type="checkbox" name="toggle" value="" onclick="Joomla.checkAll(this)" /></th>
						<th width="15%"><?php echo JHTML::_('grid.sort' , "Name" , 'u.username' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th>Thumbnail</th>
						<th width="15%"><?php echo JHTML::_('grid.sort', JText::_('JR_REGISTRATION_DATE') , 'u.registerDate' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th width="10%"><?php echo JHTML::_('grid.sort', JText::_('JR_REVIEW') , 'review.count_review' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th width="10%"><?php echo JHTML::_('grid.sort', JText::_('JR_COMMENT') , 'cm.count_cm' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th width="10%"><?php echo JHTML::_('grid.sort', JText::_('JR_FOLLOWING') , 'fwing.count_following' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th width="10%"><?php echo JHTML::_('grid.sort', JText::_('JR_FOLLOWER') , 'fwer.count_followers' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
						<th width="50"><?php echo JHTML::_('grid.sort' , "ID" , 'u.id' , $this->lists['order_dir'] , $this->lists['order']) ?></th>
					</tr>
				</thead>
				<tbody>
				<?php if (!empty ($this->users)) : ?>
					<?php
					$k = 0 ;
					$i = 0 ;
					foreach ($this->users as $l ) : 
						$checked = JHTML::_('grid.id' , $i , $l->id);
					?>
					<tr class="<?php echo "row$k" ?> jr-row">
						<td align="center"><?php echo $i+1; ?></td>
						<td align="center"><?php echo $checked; ?></td>
						<td align="center">
							<a href="<?php echo JUri::base(true).'/index.php?option=com_users&view=user&layout=edit&id='.$l->id ?>"><?php echo $l->name ?></a><br/>
							<small><?php echo $l->username ?></small>
						</td>
						<td align="center">
							<p>
							<?php if($l->thumbnail): ?>
								<img class="jr-user-avatar" src="<?php echo $l->thumbnail ?>" />
							<?php else: ?>
								<span><?php echo JText::_("JR_NONE_UPDATE") ?></span>
							<?php endif; ?>
							</p>
							<button type="button" class="btn btn-small jr-change-thumb" data-id="<?php echo $l->id ?>"><?php echo JText::_("JR_CHANGE_THUMB") ?></button>
						</td>
						<td align="center"><?php echo $l->registerDate ?></td>
						<td align="center">
							<a href="<?php echo $l->review_url ?>" class="jr-text-large"><?php echo $l->count_review ?></a>
						</td>
						<td align="center">
							<a href="<?php echo $l->cm_url ?>" class="jr-text-large"><?php echo $l->count_cm ?></a>
						</td>
						<td align="center">
							<a href="<?php echo $l->following_url ?>" class="jr-text-large"><?php echo $l->count_following ?></a>
						</td>
						<td align="center">
							<a href="<?php echo $l->follower_url ?>" class="jr-text-large"><?php echo $l->count_followers ?></a>
						</td>
						<td align="center"><?php echo $l->id ?></td>
					</tr>
					<?php 
					$k = 1- $k;
					$i++ ;
					endforeach; ?>
				<?php else: ?>
				<tr>
					<td colspan="10" align="center"><?php echo JText::_("JR_NO_RECORD_FOUND") ?></td>
				</tr>
				<?php endif; ?>
				</tbody>
			</table>
		</div>
		<div align="center" style="margin-top:15px"><?php echo $this->page->getListFooter(); ?></div>

		<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="task" value="">
		<input type="hidden" name="boxchecked" value="0">
	</form>
</div>

Anon7 - 2022
AnonSec Team