? GR0V Shell

GR0V shell

Linux www.koreapackagetour.com 2.6.32-042stab145.3 #1 SMP Thu Jun 11 14:05:04 MSK 2020 x86_64

Path : /home/admin/public_html/old/board/tmp/install_52baa58b62272/admin/models/fields/
File Upload :
Current File : /home/admin/public_html/old/board/tmp/install_52baa58b62272/admin/models/fields/joomuser.php

<?php
// $HeadURL: https://joomgallery.org/svn/joomgallery/JG-2.0/JG/trunk/administrator/components/com_joomgallery/models/fields/joomuser.php $
// $Id: joomuser.php 3773 2012-05-07 15:28:36Z erftralle $
/****************************************************************************************\
**   JoomGallery 2                                                                      **
**   By: JoomGallery::ProjectTeam                                                       **
**   Copyright (C) 2008 - 2012  JoomGallery::ProjectTeam                                **
**   Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam                            **
**   Released under GNU GPL Public License                                              **
**   License: http://www.gnu.org/copyleft/gpl.html or have a look                       **
**   at administrator/components/com_joomgallery/LICENSE.TXT                            **
\****************************************************************************************/

defined('_JEXEC') or die( 'Restricted access' );

jimport('joomla.form.formfield');
jimport('joomla.form.helper');
JFormHelper::loadFieldClass('user');

/**
 * Renders a form field for user selection
 *
 * @package JoomGallery
 * @since   2.0
 */
class JFormFieldJoomUser extends JFormFieldUser
{
  /**
   * The form field type
   *
   * @var     string
   * @since   2.0
   */
  public $type = 'Joomuser';

  /**
   * Method to get the field input markup
   *
   * @return  string  The field input markup
   * @since 2.0
   */
  protected function getInput()
  {
    // Initialize variables.
    $html     = array();
    $groups   = $this->getGroups();
    $excluded = $this->getExcluded();
    $link     = 'index.php?option=com_users&amp;view=users&amp;layout=modal&amp;tmpl=component&amp;field='.$this->id.(isset($groups) ? ('&amp;groups='.base64_encode(json_encode($groups))) : '').(isset($excluded) ? ('&amp;excluded='.base64_encode(json_encode($excluded))) : '');

    // Initialize some field attributes.
    $attr  = $this->element['class'] ? ' class="'.(string) $this->element['class'].'"' : '';
    $attr .= $this->element['size'] ? ' size="'.(int) $this->element['size'].'"' : '';

    // Initialize JavaScript field attributes.
    $onchange = (string) $this->element['onchange'];

    // Load the modal behavior script.
    JHtml::_('behavior.modal', 'a.modal_'.$this->id);

    // Build the script.
    $script   = array();
    $script[] = ' function jSelectUser_'.$this->id.'(id, title) {';
    $script[] = '   var old_id = document.getElementById("'.$this->id.'_id").value;';
    $script[] = '   if (old_id != id) {';
    $script[] = '     document.getElementById("'.$this->id.'_id").value = id;';
    $script[] = '     if (id == "") {';
    $script[] = '       document.getElementById("'.$this->id.'_name").value = "'.JText::_('COM_JOOMGALLERY_COMMON_NO_USER').'";';
    $script[] = '     }';
    $script[] = '     else {';
    $script[] = '       document.getElementById("'.$this->id.'_name").value = title;';
    $script[] = '     }';
    $script[] = '     '.$onchange;
    $script[] = '   }';
    $script[] = '   SqueezeBox.close();';
    $script[] = ' }';

    // Add the script to the document head.
    JFactory::getDocument()->addScriptDeclaration(implode("\n", $script));

    // Load the current user if available.
    $config = JoomConfig::getInstance();
    $type   = $config->get('jg_realname') ? 'name' : 'username';
    $table  = JTable::getInstance('user');
    if($this->value)
    {
      $table->load($this->value);
    }
    else
    {
      $table->$type = JText::_('COM_JOOMGALLERY_COMMON_NO_USER');
    }

    // Create a dummy text field with the user name.
    $html[] = '<div class="fltlft">';
    $html[] = ' <input type="text" id="'.$this->id.'_name"' .
          ' value="'.htmlspecialchars($table->$type, ENT_COMPAT, 'UTF-8').'"' .
          ' disabled="disabled"'.$attr.' />';
    $html[] = '</div>';

    // Create the user select button.
    $html[] = '<div class="button2-left">';
    $html[] = '  <div class="blank">';
    if($this->element['readonly'] != 'true')
    {
      $html[] = '   <a class="modal_'.$this->id.'" title="'.JText::_('JLIB_FORM_CHANGE_USER').'"' .
              ' href="'.$link.'"' .
              ' rel="{handler: \'iframe\', size: {x: 800, y: 500}}">';
      $html[] = '     '.JText::_('JLIB_FORM_CHANGE_USER').'</a>';
    }
    $html[] = '  </div>';
    $html[] = '</div>';

    // Create the real field, hidden, that stored the user id.
    $html[] = '<input type="hidden" id="'.$this->id.'_id" name="'.$this->name.'" value="'.(int) $this->value.'" />';

    return implode("\n", $html);
  }
}

T1KUS90T
  root-grov@210.1.60.28:~$