%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/old/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>