uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : localhost.localdomain
Kernel : Linux localhost.localdomain 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
consult-e-syn
/
public_html
/
643de
/
..
/
plugins
/
editors-xtd
/
dxfabutton
/
dxfabutton.php
/
/
<?php /** * @copyright Copyright (c) 2014 dibuxo. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // no direct access defined('_JEXEC') or die; /** * editors-xtd - fontawesomebutton Plugin * * @package Joomla.Plugin * @subpakage dibuxo.fontawesomebutton */ class PlgButtonDxfabutton extends JPlugin { /** * Load the language file on instantiation. * * @var boolean * @since 3.1 */ protected $autoloadLanguage = true; /** * Display the button * * @param string $name The name of the button to add * * @return array A two element array of (imageName, textToInsert) */ public function onDisplay($name) { $content_params = JComponentHelper::getParams( 'com_dxfontawesome' ); $faversion = $content_params->get( 'faversion', '4'); JHtml::_('behavior.modal'); // Import CSS $isFront = JFactory::getApplication()->isSite() ? 'administrator/' : ''; //prevent front $isFront = ''; if($faversion == '4'){ $link = $isFront.'index.php?option=com_dxfontawesome&view=dxfontawesome&layout=fa_selector&tmpl=component&editor=' . $name; }else{ $link = $isFront.'index.php?option=com_dxfontawesome&view=dxfontawesome&layout=fa_selector5&tmpl=component&editor=' . $name; } $button = new JObject; $button->modal = true; $button->class = 'btn'; $button->link = $link; $button->text = JText::_('FontAwesome '.$faversion); $button->name = 'info-circle'; $button->options = "{handler: 'iframe', size: {x: 740, y: 520}}"; return $button; } }
/var/www/consult-e-syn/public_html/643de/../plugins/editors-xtd/dxfabutton/dxfabutton.php