shell bypass 403
GrazzMean Shell
: /home/nayff91c5tsx/www/wp-content/plugins/jet-search/includes/bricks-views/elements/ [ drwx---r-x ]
<?php
namespace Jet_Search\Bricks_Views\Elements;
use Jet_Search\Bricks_Views\Helpers\Preview;
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
class Base extends \Bricks\Element {
// Element properties
public $category = 'general'; // Use predefined element category 'general'
public $name = ''; // Make sure to prefix your elements
public $icon = 'ti-bolt-alt'; // Themify icon font class
public $css_selector = ''; // Default CSS selector
public $scripts = []; // Script(s) run when element is rendered on frontend or updated in builder
public $current_jet_group = null;
public $current_jet_tab = null;
public $jet_element_render_instance;
public $jet_element_render = '';
// Return localised element label
public function get_label() {
return '';
}
/**
* Register new control group
* You can't add elements into new groups without registering these groups before
*
* @param [type] $name [description]
* @param array $data [description]
* @return [type] [description]
*/
public function register_jet_control_group( $name, $data = [] ) {
$this->control_groups[ $name ] = $data;
}
public function update_jet_control_group( $name, $data = [] ) {
$current_data = $this->control_groups[ $name ];
$current_data = array_merge( $current_data, $data );
$this->control_groups[ $name ] = $current_data;
}
/**
* Start controls group (aka Sections in Elementor)
* @param [type] $group [description]
* @return [type] [description]
*/
public function start_jet_control_group( $group ) {
$data = isset( $this->control_groups[ $group ] ) ? $this->control_groups[ $group ] : [];
$this->current_jet_tab = isset( $data['tab'] ) ? $data['tab'] : 'content';
$this->current_jet_group = $group;
}
/**
* End controls grous
* @return [type] [description]
*/
public function end_jet_control_group() {
$this->current_jet_tab = null;
$this->current_jet_group = null;
}
/**
* Wrapper to register control
*
* @param [type] $name [description]
* @param array $data [description]
* @return [type] [description]
*/
public function register_jet_control( $name, $data = [] ) {
if ( ! $this->current_jet_tab ) {
$this->current_jet_tab = 'content';
}
$data['tab'] = $this->current_jet_tab;
$data['group'] = $this->current_jet_group;
$this->controls[ $name ] = $data;
}
public function update_jet_control( $name, $data = [] ) {
if ( ! $this->current_jet_tab ) {
$this->current_jet_tab = 'content';
}
$current_data = $this->controls[ $name ];
$current_data = array_merge( $current_data, $data );
$this->controls[ $name ] = $current_data;
}
public function get_jet_settings( $setting = null, $default = false ) {
if ( ! $setting ) {
return $this->settings;
}
$value = null;
if ( isset( $this->settings[ $setting ] ) ) {
$value = $this->settings[ $setting ];
} else {
$value = isset( $this->controls[ $setting ] ) && isset( $this->controls[ $setting ]['default'] ) ? $this->controls[ $setting ]['default'] : $default;
}
return $value;
}
public function parse_jet_render_attributes( $attrs = [] ) {
return apply_filters( 'jet-search/bricks-views/element/parsed-attrs', $attrs, $this );
}
// Set builder control groups
public function set_control_groups() {
}
// Set builder controls
public function set_controls() {
}
// Enqueue element styles and scripts
public function enqueue_scripts() {
}
// Render element HTML
public function render() {
$this->set_attribute( '_root', 'data-is-block', 'jet-search/' . $this->jet_element_render );
}
}