uawdijnntqw1x1x1
IP : 216.73.216.231
Hostname : 213-108-241-110.cprapid.com
Kernel : Linux 213-108-241-110.cprapid.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
digilove
/
public_html
/
components
/
com_jw_disqus
/
..
/
com_jmap
/
controllers
/
google.php
/
/
<?php // namespace components\com_jmap\controllers; /** * @package JMAP::GOOGLE::components::com_jmap * @subpackage controllers * @author Joomla! Extensions Store * @copyright (C) 2021 - Joomla! Extensions Store * @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html */ defined ( '_JEXEC' ) or die ( 'Restricted access' ); /** * Main controller * @package JMAP::GOOGLE::components::com_jmap * @subpackage controllers * @since 3.5 */ class JMapControllerGoogle extends JMapController { /** * Set model state from session userstate * @access protected * @param string $scope * @return void */ protected function setModelState($scope = 'default', $ordering = true) { $option = $this->option; // Get default model $defaultModel = $this->getModel(); // Set model state $defaultModel->setState ( 'option', $option ); // Retrive component params with view override $cParams = $defaultModel->getComponentParams(); $analyticsService = $cParams->get('analytics_service', 'google'); // Migration path if($analyticsService == 'alexa') { $cParams->set('analytics_service', 'statscrop'); $analyticsService = 'statscrop'; } $analyticsModelState = $analyticsService == 'google' ? 'analytics' : $analyticsService . 'fetch'; // Override googlestats by query string if the format raw loopback request is placed by the iframe, such as alexarender if($googleStatsByQueryString = $this->app->input->get('googlestats', null)) { $analyticsModelState = $googleStatsByQueryString; } $defaultModel->setState ( 'googlestats', $analyticsModelState); return $defaultModel; } /** * Default listEntities * * @access public * @param $cachable string * the view output will be cached * @return void */ public function display($cachable = false, $urlparams = false) { // Mixin, add include path for admin side to avoid DRY on model $this->addModelPath ( JPATH_COMPONENT_ADMINISTRATOR . '/models', 'JMapModel' ); $this->setModelState('google'); parent::display($cachable, $urlparams); } /** * Delete a db table entity * * @access public * @return void */ public function deleteEntity() { // Mixin, add include path for admin side to avoid DRY on model $this->addModelPath ( JPATH_COMPONENT_ADMINISTRATOR . '/models', 'JMapModel' ); // Load della model e checkin before exit $model = $this->getModel (); if (! $model->deleteEntity ( null )) { // Model set exceptions for something gone wrong, so enqueue exceptions and levels on application object then set redirect and exit $modelException = $model->getError ( null, false ); $this->app->enqueueMessage ( $modelException->getMessage (), $modelException->getErrorLevel () ); $this->setRedirect ( "index.php?option=" . $this->option . "&task=" . $this->corename . ".display", JText::_ ( 'COM_JMAP_GOOGLEANALYTICS_ERROR_' . 'LOGOUT' ) ); return false; } $this->setRedirect ( JRoute::_("index.php?option=" . $this->option . "&view=" . $this->corename), JText::_ ( 'COM_JMAP_GOOGLEANALYTICS_SUCCESS_LOGOUT' ) ); } /** * Class Constructor * * @access public * @return Object& */ public function __construct($config = array()) { parent::__construct ( $config ); // Manage partial language translations from the backend side $jLang = JFactory::getLanguage (); $jLang->load ( 'com_jmap', JPATH_COMPONENT_ADMINISTRATOR, 'en-GB', true, true ); if ($jLang->getTag () != 'en-GB') { $jLang->load ( 'com_jmap', JPATH_ADMINISTRATOR, null, true, false ); $jLang->load ( 'com_jmap', JPATH_COMPONENT_ADMINISTRATOR, null, true, false ); } // Composer autoloader if (PHP_VERSION_ID >= 70205) { require_once JPATH_COMPONENT_ADMINISTRATOR. '/framework/composer/autoload_real.php'; ComposerAutoloaderInitcb4c0ac1dedbbba2f0b42e9cdf4d93d7::getLoader(); } else { // Fallback to legacy API require_once JPATH_COMPONENT_ADMINISTRATOR. '/framework/composerlegacy/autoload_real.php'; ComposerAutoloaderInitfc5c9af51413a149e4084a610a3ab6de::getLoader(); } } }
/home/digilove/public_html/components/com_jw_disqus/../com_jmap/controllers/google.php