81 lines
2.8 KiB
PHP
81 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* @version $Id: view.html.php 1812 2013-01-14 18:45:06Z lefteris.kavadas $
|
|
* @package K2
|
|
* @author JoomlaWorks http://www.joomlaworks.net
|
|
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
|
|
* @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html
|
|
*/
|
|
|
|
// no direct access
|
|
defined('_JEXEC') or die;
|
|
|
|
jimport('joomla.application.component.view');
|
|
|
|
class K2ViewUser extends K2View
|
|
{
|
|
|
|
function display($tpl = null)
|
|
{
|
|
|
|
JRequest::setVar('hidemainmenu', 1);
|
|
$model = $this->getModel();
|
|
$user = $model->getData();
|
|
if (K2_JVERSION == '15')
|
|
{
|
|
JFilterOutput::objectHTMLSafe($user);
|
|
}
|
|
else
|
|
{
|
|
JFilterOutput::objectHTMLSafe($user, ENT_QUOTES, array('params', 'plugins'));
|
|
}
|
|
$joomlaUser = JUser::getInstance(JRequest::getInt('cid'));
|
|
|
|
$user->name = $joomlaUser->name;
|
|
$user->userID = $joomlaUser->id;
|
|
$this->assignRef('row', $user);
|
|
|
|
$wysiwyg = JFactory::getEditor();
|
|
$editor = $wysiwyg->display('description', $user->description, '480px', '250px', '', '', false);
|
|
$this->assignRef('editor', $editor);
|
|
|
|
$lists = array();
|
|
$genderOptions[] = JHTML::_('select.option', 'm', JText::_('K2_MALE'));
|
|
$genderOptions[] = JHTML::_('select.option', 'f', JText::_('K2_FEMALE'));
|
|
$lists['gender'] = JHTML::_('select.radiolist', $genderOptions, 'gender', '', 'value', 'text', $user->gender);
|
|
|
|
$userGroupOptions = $model->getUserGroups();
|
|
$lists['userGroup'] = JHTML::_('select.genericlist', $userGroupOptions, 'group', 'class="inputbox"', 'id', 'name', $user->group);
|
|
|
|
$this->assignRef('lists', $lists);
|
|
|
|
$params = JComponentHelper::getParams('com_k2');
|
|
$this->assignRef('params', $params);
|
|
|
|
JPluginHelper::importPlugin('k2');
|
|
$dispatcher = JDispatcher::getInstance();
|
|
$K2Plugins = $dispatcher->trigger('onRenderAdminForm', array(&$user, 'user'));
|
|
$this->assignRef('K2Plugins', $K2Plugins);
|
|
|
|
JToolBarHelper::title(JText::_('K2_USER'), 'k2.png');
|
|
JToolBarHelper::save();
|
|
JToolBarHelper::apply();
|
|
JToolBarHelper::cancel();
|
|
$toolbar = JToolBar::getInstance('toolbar');
|
|
if (K2_JVERSION != '15')
|
|
{
|
|
$buttonUrl = JURI::base().'index.php?option=com_users&view=user&task=user.edit&id='.$user->userID;
|
|
}
|
|
else
|
|
{
|
|
$buttonUrl = JURI::base().'index.php?option=com_users&view=user&task=edit&cid[]='.$user->userID;
|
|
}
|
|
$buttonText = JText::_('K2_EDIT_JOOMLA_USER');
|
|
$button = '<a target="_blank" href="'.$buttonUrl.'"><span class="icon-32-edit" title="'.$buttonText.'"></span>'.$buttonText.'</a>';
|
|
$toolbar->prependButton('Custom', $button);
|
|
|
|
parent::display($tpl);
|
|
}
|
|
|
|
}
|