uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
home_
/
plugins
/
editors-xtd
/
jcommentsoff.php
/
/
<?php /** * JComments - Joomla Comment System * * Provides button to insert {jcomments off} into content edit box * * @version 2.0 * @package JComments * @author Sergey M. Litvinov (smart@joomlatune.ru) * @copyright (C) 2006-2009 by Sergey M. Litvinov (http://www.joomlatune.ru) * @license GNU/GPL: http://www.gnu.org/copyleft/gpl.html * * If you fork this to create your own project, * please make a reference to JComments someplace in your code * and provide a link to http://www.joomlatune.ru **/ (defined('_VALID_MOS') OR defined('_JEXEC')) or die('Direct Access to this location is not allowed.'); // define directory separator short constant if (!defined( 'DS' )) { define( 'DS', DIRECTORY_SEPARATOR ); } if (defined('JPATH_ROOT')) { include_once( JPATH_ROOT.DS.'components'.DS.'com_jcomments'.DS.'jcomments.legacy.php' ); } else { global $mosConfig_absolute_path; include_once( $mosConfig_absolute_path.DS.'components'.DS.'com_jcomments'.DS.'jcomments.legacy.php' ); } // if component doesnt exists (may be already uninstalled) - return if (!defined( 'JCOMMENTS_JVERSION' )) { return; } if ( JCOMMENTS_JVERSION == '1.0' ) { global $_MAMBOTS; $_MAMBOTS->registerFunction( 'onCustomEditorButton', 'botJCommentsOffButton' ); function botJCommentsOffButton() { global $option; switch ( $option ) { case 'com_sections': case 'com_categories': case 'com_modules': $button = array( '', '' ); break; default: $button = array( 'jcommentsoff.gif', '{jcomments off}' ); break; } return $button; } } else { jimport('joomla.event.plugin'); /** * Editor JComments Off button **/ class plgButtonJCommentsOff extends JPlugin { function plgButtonJCommentsOff(& $subject, $config) { parent::__construct($subject, $config); } function onDisplay($name) { $getContent = $this->_subject->getContent($name); $js = " function insertJCommentsOff(editor) { var content = $getContent if (content.match(/{jcomments off}/)) { return false; } else { jInsertEditorText('{jcomments off}', editor); } } "; $doc =& JFactory::getDocument(); $doc->addScriptDeclaration($js); $button = new JObject(); $button->set('modal', false); $button->set('onclick', 'insertJCommentsOff(\''.$name.'\');return false;'); $button->set('text', 'JComments OFF'); $button->set('name', 'blank'); $button->set('link', '#'); return $button; } } } ?>
/home/poliximo/public_html/4690b/../home_/plugins/editors-xtd/jcommentsoff.php