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
/
content
/
themlercontent
/
themlercontent.php
/
/
<?php defined('_JEXEC') or die; /** * Themler plugin */ class plgContentThemlercontent extends JPlugin { public function onContentPrepare($context, &$row, &$params, $page = 0) { if (JFactory::getApplication()->isAdmin()) return; $templateName = $this->_getCurrentTemplate(); if (file_exists(JPATH_THEMES . '/' . $templateName . '/library/Designer.php') && !file_exists(JPATH_THEMES . '/' . $templateName . '/plugins/content.zip')) return; $isPreview = 'on' == JRequest::getVar('is_preview', ''); if ($isPreview || ('' != JRequest::getVar('template', '') && $isPreview)) return; $lib = JPATH_PLUGINS . '/content/themlercontent/lib'; $doc = JFactory::getDocument(); if (!isset($GLOBALS['themlerThemePluginFilesDeleted'])) { $jquery = $this->params->get('jquery', '0'); if ($jquery == '1') { $doc->addScript(JURI::root(true) . '/plugins/content/themlercontent/lib/beforejq.js'); $doc->addScript(JURI::root(true) . '/plugins/content/themlercontent/lib/jquery.js'); $doc->addScript(JURI::root(true) . '/plugins/content/themlercontent/lib/afterjq.js'); } $bootstrapjs = $this->params->get('bootstrapjs', '0'); if ($bootstrapjs == '1') { $doc->addScript(JURI::root(true) . '/plugins/content/themlercontent/lib/bootstrap.min.js'); } $bootstrapcss = $this->params->get('bootstrapcss', '0'); if ($bootstrapcss == '1') { $doc->addStyleSheet(JURI::root(true) . '/plugins/content/themlercontent/lib/bootstrap.css'); } } $scpath = $lib . '/Shortcodes.php'; if (file_exists($scpath)) { require_once $scpath; if (isset($row->text)) $row->text = DesignerShortcodes::process($row->text); if (isset($row->introtext)) $row->introtext = DesignerShortcodes::process($row->introtext); if (isset($row->fulltext)) $row->fulltext = DesignerShortcodes::process($row->fulltext); } return; } private function _getCurrentTemplate() { return strtolower(JFactory::getApplication()->getTemplate()); } }
/var/www/consult-e-syn/public_html/643de/../plugins/content/themlercontent/themlercontent.php