<?php /** * JEvents Component for Joomla! 3.x * * @version $Id: jevbuttons.php 2749 2011-10-13 08:54:34Z geraintedwards $ * @package JEvents * @copyright Copyright (C) 2008-2019 GWE Systems Ltd * @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html * @link http://www.jevents.net */ // Check to ensure this file is within the rest of the framework defined('JPATH_BASE') or die(); jimport('joomla.html.toolbar.button'); jimport('cms.toolbar.button'); use Joomla\String\StringHelper; class JButtonJev extends JToolbarButton { /** * Button type * * @access protected * @var string */ var $_name = 'Jev'; function fetchButton( $type='Jev', $icon = '', $text='',$task='', $list='') { $i18n_text = JText::_($text); $class = $this->fetchIconClass($icon); $doTask = $this->_getCommand($text, $task, $list); $html = "<a href=\"#\" onclick=\"$doTask;return false;\" class=\"toolbar\">\n"; $html .= "<span class=\"$class\" title=\"$i18n_text\">\n"; $html .= "</span>\n"; $html .= "$i18n_text\n"; $html .= "</a>\n"; return $html; } /** * Get the button CSS Id * * @access public * @return string Button CSS Id * @since 1.5 */ function fetchId( $type='Js', $icon = '', $text = '', $task='', $listSelect='', $js='' ) { return $this->_parent->getName().'-'.$icon; } /** * Get the JavaScript command for the button * * @access private * @param string $name The task name as seen by the user * @param string $task The task used by the application * @param ??? $list * @param boolean $hide * @return string JavaScript command string * @since 1.5 */ function _getCommand($name, $task, $list) { $todo = JString::strtolower(JText::_( $name )); $message = JText::sprintf( 'Please make a selection from the list to', $todo ); $message = addslashes($message); $submitbutton = "Joomla.submitbutton"; if ($list) { $cmd = "javascript:if(document.adminForm.boxchecked.value==0){alert('$message');}else{ $submitbutton('$task')};return false;"; } else { $cmd = "javascript:$submitbutton('$task');return false;"; } return $cmd; } } class JButtonJevlink extends JToolbarButton { /** * Button type * * @access protected * @var string */ var $_name = 'Jevlink'; function fetchButton( $type='Jevlink', $icon = '', $text='',$task='', $list='') { $i18n_text = JText::_($text); $class = $this->fetchIconClass($icon); $doTask = $this->_getCommand($text, $task, $list); $html = "<a href=\"$doTask\" class=\"toolbar\">\n"; $html .= "<span class=\"$class\" title=\"$i18n_text\">\n"; $html .= "</span>\n"; $html .= "$i18n_text\n"; $html .= "</a>\n"; return $html; } /** * Get the button CSS Id * * @access public * @return string Button CSS Id * @since 1.5 */ function fetchId( $type='Js', $icon = '', $text = '', $task='', $listSelect='', $js='' ) { return $this->_parent->getName().'-'.$icon; } /** * Get the JavaScript command for the button * * @access private * @param string $name The task name as seen by the user * @param string $task The task used by the application * @param ??? $list * @param boolean $hide * @return string JavaScript command string * @since 1.5 */ function _getCommand($name, $task, $list) { $Itemid = JRequest::getInt("Itemid"); $link = JRoute::_("index.php?option=".JEV_COM_COMPONENT."&task=$task&Itemid=$Itemid"); return $link; } } class JButtonJevconfirm extends JtoolbarButton { /** * Button type * * @access protected * @var string */ var $_name = 'JevConfirm'; function fetchButton( $type='Confirm', $msg='', $name = '', $text = '', $task = '', $list = true, $hideMenu = false , $jstestvar = false) { $text = JText::_($text); $msg = JText::_($msg, true); $class = $this->fetchIconClass($name); $doTask = $this->_getCommand($msg, $name, $task, $list, $hideMenu,$jstestvar); $html = "<a href=\"#\" onclick=\"$doTask;return false;\" class=\"toolbar\">\n"; $html .= "<span class=\"$class\" title=\"$text\">\n"; $html .= "</span>\n"; $html .= "$text\n"; $html .= "</a>\n"; return $html; } /** * Get the button CSS Id * * @access public * @return string Button CSS Id * @since 1.5 */ function fetchId( $type='Confirm', $msg='', $name = '', $text = '', $task = '', $list = true, $hideMenu = false , $jstestvar = false) { return $this->_parent->getName().'-'.$name; } /** * Get the JavaScript command for the button * * @access private * @param object $definition Button definition * @return string JavaScript command string * @since 1.5 */ function _getCommand($msg, $name, $task, $list, $hide, $jstestvar = false) { $todo = JString::strtolower(JText::_( $name )); $message = JText::sprintf( 'Please make a selection from the list to %s', $todo ); $message = addslashes($message); $submitbutton = "Joomla.submitbutton"; if ($hide) { if ($list) { $cmd = "javascript:if(document.adminForm.boxchecked.value==0){ alert('$message'); } else{ if($jstestvar==1) { if (confirm('$msg')){ $submitbutton('$task'); } return false; } $submitbutton('$task'); }"; } else { $cmd = "javascript: if($jstestvar==1) { if (confirm('$msg')){ $submitbutton('$task'); } return false; } $submitbutton('$task'); "; } } else { if ($list) { $cmd = "javascript:if(document.adminForm.boxchecked.value==0){ alert('$message'); } else{ if($jstestvar==1) { if (confirm('$msg')){ $submitbutton('$task'); } return false; } $submitbutton('$task'); }"; } else { $cmd = "javascript: if($jstestvar==1) { if (confirm('$msg')){ $submitbutton('$task'); } return false; } $submitbutton('$task'); "; } } return $cmd; } }