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/elements/classic/section/definition.php
<?php

/**
 * Element Definition: Section
 */

class CSE_Section extends BaseClassicElement {

	public function ui() {
		return array(
      'title'       => __( 'Section', 'cornerstone' ),
    );
	}

	public function flags() {
		return array(
			'empty_placeholder' => false,
			'context' => '_layout',
			'dynamic_child' => true,
			'elements' => array(
				'floor' => 1
			),
      'protected_keys' => array(
        'bg_image',
        'bg_video',
        'bg_video_poster',
      )
		);
	}

	public function _layout_defaults() {
		return array(
			'elements' => array( array( '_type' => 'classic:row' ) )
		);
	}

	public function update_defaults( $defaults ) {
		return array_merge($defaults, $this->_layout_defaults() );
	}

	public function register_shortcode() {
  	return false;
  }

	public function update_build_shortcode_atts( $atts ) {

		unset( $atts['title'] );

		if ( isset($atts['bg_type'])  ) {

			if ( $atts['bg_type'] == 'image' && isset( $atts['bg_pattern_toggle'] ) && $atts['bg_pattern_toggle'] == 'true' ) {
				$atts['bg_pattern'] = $atts['bg_image'];
				unset( $atts['bg_image'] );
			}

			if ( $atts['bg_type'] != 'image' ) {
				unset( $atts['bg_image'] );
			}

			if ( $atts['bg_type'] != 'video' ) {
				unset( $atts['bg_video'] );
				unset( $atts['bg_video_poster'] );
			}

			if ( $atts['bg_type'] == 'none' ) {
				unset( $atts['bg_color'] );
			}

			unset( $atts['bg_pattern_toggle'] );
			unset( $atts['bg_type'] );

		}

		return $atts;

	}
}