uawdijnntqw1x1x1
IP : 216.73.216.6
Hostname : ps-hcp-gr-004.pouyasazan.org
Kernel : Linux ps-hcp-gr-004.pouyasazan.org 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
Disable Function : exec,system,passthru,shell_exec,proc_open,proc_close,popen,pcntl_exec,dl,show_source
OS : Linux
PATH:
/
home
/
hsabaeej
/
public_html
/
3c2fc
/
..
/
modules
/
mod_maximenuck
/
elements
/
ckmenuitemswizard.php
/
/
<?php /** * @copyright Copyright (C) 2015 Cedric KEIFLIN alias ced1870 * http://www.joomlack.fr * @license GNU/GPL * */ // no direct access defined('_JEXEC') or die('Restricted access'); jimport('joomla.form.form'); jimport('joomla.filesystem.file'); jimport('joomla.filesystem.folder'); require_once JPATH_ROOT . '/modules/mod_maximenuck/helper.php'; class JFormFieldCkmenuitemswizard extends JFormField { protected $type = 'ckmenuitemswizard'; protected function getLabel() { return ''; } protected function getInput() { $input = new JInput(); $imgpath = JUri::root(true) . '/modules/mod_maximenuck/elements/images/'; $doc = JFactory::getDocument(); $doc->addScript(JUri::root(true) . '/modules/mod_maximenuck/elements/ckbox/ckbox.js'); $doc->addStylesheet(JUri::root(true) . '/modules/mod_maximenuck/elements/ckbox/ckbox.css'); // check if the maximenu params component is installed $com_params_text = ''; if ( file_exists(JPATH_ROOT . '/administrator/components/com_maximenuck/views/items/view.html.php') ) { // $com_params_text = '<img src="' . $imgpath . 'accept.png" />' . JText::_('MOD_MAXIMENUCK_COMPONENT_PARAMS_INSTALLED'); $button = '<input name="' . $this->name . '_button" id="' . $this->name . '_button" class="ckpopupwizardmanager_button" style="background-image:url(' . $imgpath . 'menu.png);" type="button" value="' . JText::_('MAXIMENUCK_MENUITEMS_WIZARD') . '" onclick="CKBox.open({handler:\'iframe\', fullscreen: true, url:\'' . JUri::root(true) . '/administrator/index.php?option=com_maximenuck&view=modules&view=items&layout=modal&menutype=\'+document.getElementById(\'jform_params_menutype\').value})"/>'; } else { // $com_params_text = '<img src="' . $imgpath . 'cross.png" />' . JText::_('MOD_MAXIMENUCK_COMPONENT_PARAMS_NOT_INSTALLED_MENUITEMS'); $button = ''; } $html = ''; // css styles already loaded into the ckmaximenuchecking field // $html .= $com_params_text ? '<div class="maximenuckchecking">' . $com_params_text . '</div>' : ''; $html .= '<div class="clr"></div>'; $html .= $button; return $html; } }
/home/hsabaeej/public_html/3c2fc/../modules/mod_maximenuck/elements/ckmenuitemswizard.php