PATH:
home
/
lab2454c
/
spaxtac.com
/
wp-content
/
plugins
/
elementor-pro
/
modules
/
theme-builder
/
documents
<?php namespace ElementorPro\Modules\ThemeBuilder\Documents; use Elementor\Core\DocumentTypes\Post; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } abstract class Header_Footer_Base extends Theme_Section_Document { public function get_css_wrapper_selector() { return '.elementor-' . $this->get_main_id(); } protected static function get_editor_panel_categories() { // Move to top as active. $categories = [ 'theme-elements' => [ 'title' => esc_html__( 'Site', 'elementor-pro' ), 'active' => true, ], ]; return $categories + parent::get_editor_panel_categories(); } protected function register_controls() { parent::register_controls(); Post::register_style_controls( $this ); $this->update_control( 'section_page_style', [ 'label' => esc_html__( 'Style', 'elementor-pro' ), ] ); } protected function get_remote_library_config() { $config = parent::get_remote_library_config(); $config['category'] = $this->get_name(); return $config; } }
[+]
..
[-] theme-section-document.php
[edit]
[-] single.php
[edit]
[-] footer.php
[edit]
[-] archive-single-base.php
[edit]
[-] single-post.php
[edit]
[-] header.php
[edit]
[-] header-footer-base.php
[edit]
[-] theme-document.php
[edit]
[-] single-base.php
[edit]
[-] section.php
[edit]
[-] single-page.php
[edit]
[-] theme-page-document.php
[edit]
[-] archive.php
[edit]
[-] search-results.php
[edit]
[-] error-404.php
[edit]