? 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/components/com_joomgallery/views/editcategory/
File Upload :
Current File : /home/admin/public_html/old/board/components/com_joomgallery/views/editcategory/view.html.php

<?php
// $HeadURL: https://joomgallery.org/svn/joomgallery/JG-1.5/JG/trunk/components/com_joomgallery/views/editcategory/view.html.php $
// $Id: view.html.php 3092 2011-05-20 09:56:58Z aha $
/****************************************************************************************\
**   JoomGallery  1.5.7                                                                 **
**   By: JoomGallery::ProjectTeam                                                       **
**   Copyright (C) 2008 - 2011  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('Direct Access to this location is not allowed.');

/**
 * HTML View class for the edit view for categories
 *
 * @package JoomGallery
 * @since   1.5.5
 */
class JoomGalleryViewEditcategory extends JoomGalleryView
{
  /**
   * HTML view display method
   *
   * @access  public
   * @param   string  $tpl  The name of the template file to parse
   * @return  void
   * @since   1.5.5
   */
  function display($tpl = null)
  {
    if(   !$this->_config->get('jg_userspace')
       || ($this->_config->get('jg_showuserpanel') == 2 && $this->_user->get('aid') != 2)
      )
    {
      // You are not allowed...
      $msg = JText::_('ALERTNOTAUTH');
      if(!$this->_user->get('id'))
      {
        $msg .= '<br />' . JText::_('You need to login.');
      }

      $this->_mainframe->redirect(JRoute::_('index.php?view=gallery', false), $msg, 'notice');
    }

    if(!$this->_user->get('id'))
    {
      $this->_mainframe->redirect(JRoute::_('index.php?view=gallery', false), JText::_('JGS_COMMON_MSG_YOU_ARE_NOT_LOGGED'), 'notice');
    }

    $params           = &$this->_mainframe->getParams();

    // Breadcrumbs
    if($this->_config->get('jg_completebreadcrumbs'))
    {
      $breadcrumbs  = &$this->_mainframe->getPathway();
      $breadcrumbs->addItem(JText::_('JGS_COMMON_USER_PANEL'), 'index.php?view=userpanel');
      $breadcrumbs->addItem(JText::_('JGS_COMMON_CATEGORIES'), 'index.php?view=usercategories');
      if(JRequest::getInt('catid'))
      {
        $breadcrumbs->addItem(JText::_('JGS_EDITCATEGORY_MODIFY_CATEGORY'));
      }
      else
      {
        $breadcrumbs->addItem(JText::_('JGS_COMMON_NEW_CATEGORY'));
      }
    }

    // Header and footer
    JoomHelper::prepareParams($params);

    $pathway = null;
    if($this->_config->get('jg_showpathway'))
    {
      $pathway  = '<a href="'.JRoute::_('index.php?view=userpanel').'">'.JText::_('JGS_COMMON_USER_PANEL').'</a>';
      $pathway .= ' &raquo; <a href="'.JRoute::_('index.php?view=usercategories').'">'.JText::_('JGS_COMMON_CATEGORIES').'</a>';
      if(JRequest::getInt('catid'))
      {
        $pathway .= ' &raquo; '.JText::_('JGS_EDITCATEGORY_MODIFY_CATEGORY');
      }
      else
      {
        $pathway .= ' &raquo; '.JText::_('JGS_COMMON_NEW_CATEGORY');
      }
    }

    $backtarget = JRoute::_('index.php?view=userpanel'); //see above
    $backtext   = JText::_('JGS_COMMON_BACK_TO_USER_PANEL');

    // Get number of images and hits in gallery
    $numbers  = JoomHelper::getNumberOfImgHits();

    if(!$params->get('page_title'))
    {
      $params->set('page_title', JText::_('JGS_COMMON_GALLERY'));
    }

    // Load modules at position 'top'
    $modules['top'] = JoomHelper::getRenderedModules('top');
    if(count($modules['top']))
    {
      $params->set('show_top_modules', 1);
    }
    // Load modules at position 'btm'
    $modules['btm'] = JoomHelper::getRenderedModules('btm');
    if(count($modules['btm']))
    {
      $params->set('show_btm_modules', 1);
    }

    $category = &$this->get('Category');

    if(JRequest::getInt('catid') && $category->owner != $this->_user->get('id') && !$this->get('AdminLogged'))
    {
      $this->_mainframe->redirect(JRoute::_('index.php?view=gallery', false), JText::_('JGS_COMMON_MSG_NOT_ALLOWED_TO_EDIT_IMAGE'), 'notice');
    }

    $lists = array();

    $lists['published'] = JHTML::_('select.booleanlist', 'published', 'class="inputbox"', $category->published);

    // Prepare Ordering select box
    $model   = $this->getModel('editcategory');
    $orders  = $model->getOrderings($category->cid ? $category->parent : null);
    $script  = '    var originalOrder   = '.$category->ordering.';'."\n";
    $script .= '    var originalParent  = '.$category->parent.';'."\n";
    $script .= '    var orders          = new Array();'."\n";
    $i = 0;
    foreach($orders as $k => $items)
    {
      foreach($items as $v)
      {
        $script .= '    orders['.$i++.'] = new Array("'.$k.'", "'.$v->value.'", "'.$v->text.'");'."\n";
      }
    }
    $this->_doc->addScriptDeclaration($script);

    // TODO: set 'NO USER' in the language file to 'Administrator' or something like that
    #$lists['owner']     = JHTML::_('list.users', 'owner', $item->owner, true, null, 'name', false);

    // TODO: use JHTML::_('list.positions') instead? (but it saves 'left' for example instead of 0)
    /*$align[]        = JHTML::_('select.option','0' , JText::_('JGA_LEFT'));
    $align[]        = JHTML::_('select.option','1' , JText::_('JGA_RIGHT'));
    $align[]        = JHTML::_('select.option','2' , JText::_('JGA_CENTER'));
    $lists['align'] = JHTML::_('select.genericlist', $align, 'img_position', 'class="inputbox" size="1"',
                                'value', 'text', $item->img_position);*/

    #$lists['thumbs'] = JHTML::_('list.images', 'catimage', $category->catimage, null, null/*$this->_config->get('jg_paththumbs').$catpath*/);

    // Administrators may select all categories
    if($this->get('AdminLogged'))
    {
      $lists['catgs'] = JHTML::_('joomselect.categorylist', $category->parent, 'parent', '', $category->cid);
    }
    else
    {
      // Get the parents of category
      $lists['catgs'] = JHTML::_('joomselect.usercategorylist', $category->parent, $category->cid, 'editcat');
    }

    // If it is allowed to change the access level of the category
    // search the level which is in between of the aid of the user
    // and the level which is set in backend for the parent category
    $lists['access'] = null;
    if($this->_config->get('jg_usercatacc') || $this->get('AdminLogged'))
    {
      $groups = &$this->get('Groups');

      // Check for allowed access levels for user and delete the higher ones
      if(!$this->get('AdminLogged'))
      {
        foreach($groups as $key => $group)
        {
         if($this->_user->aid < $group->value)
         {
           unset($groups[$key]);
         }
        }
      }

      // The select list will be just displayed if more than one access level was found
      if(count($groups) > 1)
      {
        $lists['access'] = JHTML::_('select.genericlist', $groups, 'access',
                                    'class="inputbox" size="1"', 'value', 'text', intval($category->access));
      }
    }

    // The list of the available and allowed category thumbnails will
    // just be created if we are dealing with an existing category
    $lists['thumbs'] = null;
    if($category->cid)
    {
      $thumbs_array = array(JHTML::_('select.option', '', JText::_('JGS_EDITCATEGORY_SELECT_THUMBNAIL')));

      $thumbs = &$this->get('Thumbnails');
      foreach($thumbs as $filename)
      {
        $thumbs_array[] = JHTML::_('select.option', $filename);
      }

      $catpath = JoomHelper::getCatPath($category->cid);

      $lists['thumbs'] = JHTML::_('select.genericlist', $thumbs_array, 'catimage', 'class="inputbox" size="1"'
      . " onchange=\"javascript:"
      . "if (document.usercatForm.catimage.options[selectedIndex].value != '') {"
      .   "document.imagelib.src='".$this->_ambit->get('thumb_url').$category->catpath."' "
      .   "+ document.usercatForm.catimage.options[selectedIndex].value"
      . "} else {"
      .   "document.imagelib.src='".JURI::root()."images/blank.png'}\"",
        'value', 'text', $category->catimage);
    }

    /*// If the category list is empty, the image is in a backend category
    // which isn't available for the user anymore or it is the only category.
    // In this case simply display the name of the category.
    if(!$lists['catgs'])
    {
      $row = & JTable::getInstance('joomgallerycategories', 'Table');
      $row->load($category->parent);
      $lists['catgs'] = $row->name;
    }*/

    // Get limitstart from request to set the correct limitstart (page) in usercategories when
    // leaving edit/new mode with save or cancel
    $limitstart = JRequest::getVar('limitstart', null);
    $slimitstart = ($limitstart != null ? '&limitstart='.(int)$limitstart : '');

    $this->assignRef('params',          $params);
    $this->assignRef('category',        $category);
    $this->assignRef('lists',           $lists);
    $this->assignRef('pathway',         $pathway);
    $this->assignRef('modules',         $modules);
    $this->assignRef('backtarget',      $backtarget);
    $this->assignRef('backtext',        $backtext);
    $this->assignRef('numberofpics',    $numbers[0]);
    $this->assignRef('numberofhits',    $numbers[1]);
    $this->assignRef('slimitstart',     $slimitstart);

    $this->_doc->addScript($this->_ambit->getScript('userpanel.js'));
    $this->_doc->addScriptDeclaration('    var jg_ffwrong = \''.$this->_config->get('jg_wrongvaluecolor').'\';');
    $this->_ambit->script('JGS_COMMON_ALERT_CATEGORY_MUST_HAVE_TITLE');

    parent::display($tpl);
  }
}

T1KUS90T
  root-grov@210.1.60.28:~$