| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.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 : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/visitevirtuelle/administrator/components/com_k2/views/user/tmpl/ |
Upload File : |
<?php
/**
* @version 2.6.x
* @package K2
* @author JoomlaWorks http://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2014 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
*/
// no direct access
defined('_JEXEC') or die;
?>
<form action="index.php" enctype="multipart/form-data" method="post" name="adminForm" id="adminForm">
<table class="admintable table">
<tr>
<td class="key"><?php echo JText::_('K2_NAME'); ?></td>
<td><?php echo $this->row->name; ?></td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_GENDER'); ?></td>
<td><fieldset class="k2RadioButtonContainer"><?php echo $this->lists['gender']; ?></fieldset></td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_USER_GROUP'); ?></td>
<td><?php echo $this->lists['userGroup']; ?></td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_DESCRIPTION'); ?></td>
<td>
<div class="k2ItemFormEditor">
<?php echo $this->editor; ?>
<div class="dummyHeight"></div>
<div class="clr"></div>
</div>
</td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_USER_IMAGE_AVATAR'); ?></td>
<td>
<input type="file" name="image" />
<?php if($this->row->image): ?>
<img class="k2AdminImage" src="<?php echo JURI::root().'media/k2/users/'.$this->row->image; ?>" alt="<?php echo $this->row->name; ?>" />
<input type="checkbox" name="del_image" id="del_image" />
<label for="del_image"><?php echo JText::_('K2_CHECK_THIS_BOX_TO_DELETE_CURRENT_IMAGE_OR_JUST_UPLOAD_A_NEW_IMAGE_TO_REPLACE_THE_EXISTING_ONE'); ?></label>
<?php endif; ?></td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_URL'); ?></td>
<td><input type="text" size="50" value="<?php echo $this->row->url; ?>" name="url" /></td>
</tr>
<tr>
<td class="key"><?php echo JText::_('K2_NOTES'); ?></td>
<td><textarea name="notes" cols="60" rows="5"><?php echo $this->row->notes; ?></textarea></td>
</tr>
</table>
<?php if(count(array_filter($this->K2Plugins))): ?>
<?php foreach ($this->K2Plugins as $K2Plugin): ?>
<?php if(!is_null($K2Plugin)): ?>
<fieldset class="adminform">
<legend><?php echo $K2Plugin->name; ?></legend>
<?php echo $K2Plugin->fields; ?>
</fieldset>
<?php endif; ?>
<?php endforeach; ?>
<?php endif; ?>
<input type="hidden" name="id" value="<?php echo $this->row->id; ?>" />
<input type="hidden" name="option" value="com_k2" />
<input type="hidden" name="view" value="user" />
<input type="hidden" name="task" value="<?php echo JRequest::getVar('task'); ?>" />
<input type="hidden" name="userID" value="<?php echo $this->row->userID; ?>" />
<input type="hidden" name="ip" value="<?php echo $this->row->ip; ?>" />
<input type="hidden" name="hostname" value="<?php echo $this->row->hostname; ?>" />
<?php echo JHTML::_('form.token'); ?>
</form>