?
Path : /home/admin/public_html/old/board/tmp/install_52baa58b62272/admin/views/editimages/ |
Current File : /home/admin/public_html/old/board/tmp/install_52baa58b62272/admin/views/editimages/view.html.php |
<?php // $HeadURL: https://joomgallery.org/svn/joomgallery/JG-2.0/JG/trunk/administrator/components/com_joomgallery/views/editimages/view.html.php $ // $Id: view.html.php 3675 2012-03-04 14:58:48Z 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('Direct Access to this location is not allowed.'); /** * HTML View class for the images edit view * * @package JoomGallery * @since 1.5.5 */ class JoomGalleryViewEditimages 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) { $items = $this->get('Images'); $cids = JRequest::getVar('cid', array(), '', 'array'); $cids = implode(',', $cids); // Get the form and fill the fields $form =& $this->get('Form'); // Bind the data to the form $form->bind($items[0]); // Set some form fields manually $form->setValue('txtclearhits', null, JText::_('COM_JOOMGALLERY_IMGMAN_CLEAR_HITS_FOR_ALL_IMAGES')); $form->setValue('txtclearvotes', null, JText::_('COM_JOOMGALLERY_IMGMAN_CLEAR_VOTES_FOR_ALL_IMAGES')); $this->assignRef('items', $items); $this->assignRef('cids', $cids); $this->assignRef('form', $form); $this->addToolbar(); parent::display($tpl); } /** * Add the page title and toolbar. * * @access public * @return void * * @since 2.0 */ function addToolbar() { JToolBarHelper::title(JText::_('COM_JOOMGALLERY_IMGMAN_IMAGE_MANAGER'), 'mediamanager'); JToolbarHelper::apply('apply'); JToolbarHelper::save('save'); JToolbarHelper::cancel('cancel'); JToolbarHelper::spacer(); } }