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/self/cwd/wp-content/themes/x/framework/legacy/functions/frontend/scripts.php
<?php

// =============================================================================
// FUNCTIONS/FRONT-END/SCRIPTS.PHP
// -----------------------------------------------------------------------------
// Script output.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Enqueue Site Scripts
//   02. Output Inline Scripts
// =============================================================================

// Enqueue Site Scripts
// =============================================================================

function x_enqueue_site_scripts() {

  // Needs to depend on cs for full functionality, but will still load without it to provide basic navigation
  wp_register_script( 'x-site', X_TEMPLATE_URL . '/framework/dist/js/site/x.js', function_exists('CS') ? [ 'cs' ] : [], X_ASSET_REV === 'dev' ? null : X_ASSET_REV, true );

  wp_register_script( 'x-stack', X_TEMPLATE_URL . '/framework/dist/js/site/stack.js', [ 'jquery'], X_ASSET_REV === 'dev' ? null : X_ASSET_REV, true );

  $dataSite = [];
  $dataStack = [];

  if (x_get_option( 'x_footer_scroll_top_display' ) == '1' ) {
    $dataSite['scrollTop'] = floatval( x_get_option( 'x_footer_scroll_top_display_unit' ) ) / 100;
  }

  $dataSite = apply_filters("x_site_jsdata", $dataSite);

  $backstretch = x_get_backstretch_images();

  if ($backstretch) {
    $dataStack['backstretch'] = $backstretch;
  }

  wp_localize_script( 'x-stack', 'xJsStackData', $dataStack );
  wp_localize_script( 'x-site', 'xJsData', $dataSite );

  wp_enqueue_script( 'x-site' );

  if ( is_singular() ) {
    wp_enqueue_script( 'comment-reply' );
  }

  if ( $backstretch ) {
    wp_enqueue_script( 'x-stack' );
  }

}

add_action( 'wp_enqueue_scripts', 'x_enqueue_site_scripts' );



// Output Inline Scripts
// =============================================================================

function x_get_backstretch_images() {

  // Custom Scripts
  // --------------

  $x_design_bg_image_full = x_get_option( 'x_design_bg_image_full' );
  $bg_images = array();
  $params    = array();

  if ( $x_design_bg_image_full ) {
    $src = x_make_protocol_relative( $x_design_bg_image_full );
    if ( $src ) {
      $bg_images = array( $src );
      $params = array( 'fade' => x_get_option( 'x_design_bg_image_full_fade' ) );
    }

  }

  if ( is_singular() ) {

    $entry_id              = get_the_ID();
    $x_entry_bg_image_full = get_post_meta( $entry_id, '_x_entry_bg_image_full', true );

    if ( $x_entry_bg_image_full ) {

      $page_bg_images = explode( ',', $x_entry_bg_image_full );

      $bg_images = array_values($page_bg_images);

      $fade = get_post_meta( $entry_id, '_x_entry_bg_image_full_fade', true );
      $fade = ( $fade ) || $fade == "0" ? $fade : '750';

      $duration = get_post_meta( $entry_id, '_x_entry_bg_image_full_duration', true );
      $duration = ( $duration ) ? $duration : '7500';

      $params = array( 'fade'     => (int)$fade, 'duration' => (int)$duration );

    }

  }

  return empty ( $bg_images ) ? null : [ $bg_images, $params ];

}