| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/administrator/components/com_attachments/ |
Upload File : |
<?php
/**
* Attachments component
*
* @package Attachments
* @subpackage Attachments_Component
*
* @copyright Copyright (C) 2007-2011 Jonathan M. Cameron, All Rights Reserved
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
* @link http://joomlacode.org/gf/project/attachments/frs/
* @author Jonathan M. Cameron
*/
defined('_JEXEC') or die('Restricted access');
/**
* Class for the Attachments toolbar
*
* @package Attachments
*/
class TOOLBAR_attachments
{
/**
* Set up the toolbar for add/edit
*
* @param bool $edit true for editing, false for creating
*/
function _EDIT($edit)
{
$text = ( $edit ? JText::_( 'Edit' ) : JText::_( 'New' ) );
JToolBarHelper::title( JText::_( 'ATTACHMENT' ).': [ '. $text.' ]', 'attachments.png' );
if ( $edit ) {
JToolBarHelper::save();
JToolBarHelper::apply();
// for existing attachments the button is renamed `close`
JToolBarHelper::cancel( 'cancel', 'Close' );
}
else {
JToolBarHelper::save('saveNew', 'Save');
JToolBarHelper::apply('applyNew', 'Apply');
JToolBarHelper::cancel('myCancel', 'Cancel');
}
}
/**
* Set up the toolbar for editing parameters
*/
function _EDIT_PARAMS()
{
$text = JText::_( 'EDIT_PARAMETERS' );
JToolBarHelper::title( JText::_( 'ATTACHMENTS' ).': [ '. $text.' ]', 'attachments.png' );
JToolBarHelper::save('saveParams', 'Save');
JToolBarHelper::apply('applyParams', 'Apply');
JToolBarHelper::cancel( 'cancel', 'Cancel' );
}
/**
* Set up the toolbar for the default case (regular component display)
*/
function _DEFAULT()
{
JToolBarHelper::title( JText::_( 'ATTACHMENTS' ), 'attachments');
JToolBarHelper::publishList();
JToolBarHelper::unpublishList();
JToolBarHelper::editListX();
JToolBarHelper::addNewX();
JToolBarHelper::deleteList();
JToolBarHelper::customX('editParams', 'config', '', JText::_('PARAMETERS'), false);
// Add a button for extra admin commands
$bar =& JToolBar::getInstance('toolbar');
$bar->appendButton( 'Popup', 'adminUtils', $alt='UTILITIES',
'index.php?option=com_attachments&task=adminUtils&tmpl=component',
$width='700', $height='500' );
JToolBarHelper::help('help', true);
}
}
?>