File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_sh404sef/classes
Viewing File: /home/astoriaah/www/administrator/components/com_sh404sef/classes/shpopupstandardbutton.php
<?php /** * sh404SEF - SEO extension for Joomla! * * @author Yannick Gaultier * @copyright (c) Yannick Gaultier - Weeblr llc - 2022 * @package sh404SEF * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * @version 4.24.1.4308 * @date 2022-05-31 */ // Check to ensure this file is within the rest of the framework defined('JPATH_BASE') or die(); /** * Renders a standard button * * we cannot use Joomla's cancel button from a popup, as they use href="#" which causes the page to load in parallel with * closing of the popup. Need use href="javascript: void(0);" * * * @package Joomla.Framework * @subpackage HTML * @since 1.5 */ class JButtonShpopupstandardbutton extends JButton { /** * Button type * * @access protected * @var string */ var $_name = 'Standard'; function fetchButton( $type='Standard', $name = '', $text = '', $task = '', $list = true, $hideMenu = false ) { $i18n_text = JText::_($text); $class = $this->fetchIconClass($name); $doTask = $this->_getCommand($text, $task, $list, $hideMenu); $html = "<a href=\"javascript: void(0);\" onclick=\"$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='Standard', $name = '', $text = '', $task = '', $list = true, $hideMenu = false ) { return $this->_parent->getName().'-'.$name; } /** * 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, $hide) { $todo = JString::strtolower(JText::_( $name )); $message = JText::sprintf( 'Please make a selection from the list to', $todo ); $message = addslashes($message); $hidecode = $hide ? 'shHideMainMenu();' : ''; if ($list) { $cmd = "javascript:if(document.adminForm.boxchecked.value==0){alert('$message');}else{ $hidecode Joomla.submitbutton('$task')}"; } else { $cmd = "javascript:$hidecode Joomla.submitbutton('$task')"; } return $cmd; } }