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/plugins/cornerstone/includes/views/partials/off-canvas.php
<?php

// =============================================================================
// VIEWS/PARTIALS/OFF-CANVAS.PHP
// -----------------------------------------------------------------------------
// Off canvas partial.
// =============================================================================

$classes                 = ( isset( $classes )                 ) ? $classes                 : [];
$off_canvas_content_atts = ( isset( $off_canvas_content_atts ) ) ? $off_canvas_content_atts : [];

// Prepare Attr Values
// -------------------

$id_slug                    = ( isset( $id ) && ! empty( $id ) ) ? $id . '-off-canvas' : $toggleable_id . '-off-canvas';
$classes_off_canvas         = [ 'x-off-canvas', 'x-off-canvas-' . $off_canvas_location ];
$classes_off_canvas_close   = [ 'x-off-canvas-close', 'x-off-canvas-close-' . $off_canvas_location ];
$classes_off_canvas_content = [ 'x-off-canvas-content', 'x-off-canvas-content-' . $off_canvas_location ];


// Prepare Atts
// ------------

$atts = [
  'id'                => $id_slug,
  'class'             => array_merge( $classes_off_canvas, $classes ),
  'role'              => 'dialog',
  'data-x-toggleable' => $toggleable_id,
  'aria-hidden'       => 'true',
  'aria-label'        => __( 'Off Canvas', 'cornerstone' ),
];

if ( isset( $style ) && ! empty( $style ) ) {
  $atts['style'] = $style;
}

if ( $off_canvas_body_scroll === 'disable' ) {
  $atts['data-x-disable-body-scroll'] = true;
}

// RVT reset dynamic rendering
if (!empty($off_canvas_content_dynamic_rendering)) {
  $off_canvas_content_atts['data-rvt-offscreen-reset'] = '';
}

// ESC Key close
if (!empty($off_canvas_esc_key_close)) {
  $atts['data-x-esc-close'] = '';
}

// Overlay Attributes
$overlayAreaAtts = [
  'class' => 'x-off-canvas-bg',
];

if (!empty($off_canvas_direct_close)) {
  $overlayAreaAtts['data-x-toggle-direct-close'] = '';
}


// Output
// ------


// Close Button
$close_btn = '';

if (!empty($off_canvas_close_enabled)) {
  $svg_close = '<svg viewBox="0 0 16 16"><g><path d="M14.7,1.3c-0.4-0.4-1-0.4-1.4,0L8,6.6L2.7,1.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4L6.6,8l-5.3,5.3 c-0.4,0.4-0.4,1,0,1.4C1.5,14.9,1.7,15,2,15s0.5-0.1,0.7-0.3L8,9.4l5.3,5.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L9.4,8l5.3-5.3C15.1,2.3,15.1,1.7,14.7,1.3z"></path></g></svg>';

  $close_btn = cs_tag('button', [
    'class'               => $classes_off_canvas_close,
    'data-x-toggle-close' => true,
    'aria-label'          => __( 'Close Off Canvas Content', 'cornerstone' ),
  ], cs_tag('span', $svg_close) );
}

echo cs_tag( 'div', $atts, [
  cs_tag('span', $overlayAreaAtts, ''),
  cs_tag( 'div', [
    'class'            => $classes_off_canvas_content,
    'data-x-scrollbar' => '{"suppressScrollX":true}',
    'role'             => 'document',
    'tabindex' => '-1',
    'aria-label'       => __( 'Off Canvas Content', 'cornerstone' ),
  ], $off_canvas_content_atts, $off_canvas_custom_atts, $off_canvas_content ),
  $close_btn
]);