HEX
Server: Apache
System: Linux cpanelx.inxs.ro 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: crowdandsafety (1041)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: //proc/thread-self/cwd/wp-content/plugins/tco-google-analytics/functions/enqueue/styles.php
<?php

// =============================================================================
// FUNCTIONS/ENQUEUE/STYLES.PHP
// -----------------------------------------------------------------------------
// Enqueue all styles for the Google Analytics.
// =============================================================================

// Register and Enqueue Site Styles
// =============================================================================

function tco_google_analytics_enqueue_admin_styles( $hook ) {

  $hook_prefixes = array(
    'addons_page_x-extensions-google-analytics',
    'theme_page_x-extensions-google-analytics',
    'x_page_x-extensions-google-analytics',
    'x_page_tco-extensions-google-analytics',
    'x-pro_page_x-extensions-google-analytics',
    'pro_page_tco-extensions-google-analytics',
    'tco-extensions-google-analytics',
    'settings_page_tco-extensions-google-analytics',
  );

  if ( in_array($hook, $hook_prefixes) ) {

    wp_enqueue_style( 'postbox' );
    wp_enqueue_style( 'tco-google-analytics-admin-css', TCO_GOOGLE_ANALYTICS_URL . '/css/admin/style.css', NULL, NULL, 'all' );

  }

}

add_action( 'admin_enqueue_scripts', 'tco_google_analytics_enqueue_admin_styles' );