File manager - Edit - /home/theblueo/tv/fb4e3b/document-types.tar
Back
post.php 0000666 00000000766 15214176303 0006261 0 ustar 00 <?php namespace Elementor\Core\DocumentTypes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Post extends PageBase { public static function get_properties() { $properties = parent::get_properties(); $properties['support_kit'] = true; return $properties; } /** * @access public */ public function get_name() { return 'wp-post'; } /** * @access public * @static */ public static function get_title() { return __( 'Post', 'elementor' ); } } page-base.php 0000666 00000012063 15214176303 0007111 0 ustar 00 <?php namespace Elementor\Core\DocumentTypes; use Elementor\Controls_Manager; use Elementor\Core\Base\Document; use Elementor\Group_Control_Background; use Elementor\Plugin; use Elementor\Settings; use Elementor\Core\Settings\Manager as SettingsManager; use Elementor\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } abstract class PageBase extends Document { /** * @since 2.0.8 * @access public * @static */ public static function get_properties() { $properties = parent::get_properties(); $properties['admin_tab_group'] = ''; $properties['support_wp_page_templates'] = true; return $properties; } /** * @since 2.1.2 * @access protected * @static */ protected static function get_editor_panel_categories() { return Utils::array_inject( parent::get_editor_panel_categories(), 'theme-elements', [ 'theme-elements-single' => [ 'title' => __( 'Single', 'elementor' ), 'active' => false, ], ] ); } /** * @since 2.0.0 * @access public */ public function get_css_wrapper_selector() { return 'body.elementor-page-' . $this->get_main_id(); } /** * @since 2.0.0 * @access protected */ protected function _register_controls() { parent::_register_controls(); self::register_hide_title_control( $this ); self::register_post_fields_control( $this ); self::register_style_controls( $this ); } /** * @since 2.0.0 * @access public * @static * @param Document $document */ public static function register_hide_title_control( $document ) { $page_title_selector = SettingsManager::get_settings_managers( 'general' )->get_model()->get_settings( 'elementor_page_title_selector' ); if ( ! $page_title_selector ) { $page_title_selector = 'h1.entry-title'; } $page_title_selector .= ', .elementor-page-title'; $document->start_injection( [ 'of' => 'post_status', 'fallback' => [ 'of' => 'post_title', ], ] ); $document->add_control( 'hide_title', [ 'label' => __( 'Hide Title', 'elementor' ), 'type' => Controls_Manager::SWITCHER, 'description' => sprintf( /* translators: %s: Setting page link */ __( 'Not working? You can set a different selector for the title in the <a href="%s" target="_blank">Settings page</a>.', 'elementor' ), Settings::get_url() . '#tab-style' ), 'selectors' => [ '{{WRAPPER}} ' . $page_title_selector => 'display: none', ], ] ); $document->end_injection(); } /** * @since 2.0.0 * @access public * @static * @param Document $document */ public static function register_style_controls( $document ) { $document->start_controls_section( 'section_page_style', [ 'label' => __( 'Body Style', 'elementor' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $document->add_group_control( Group_Control_Background::get_type(), [ 'name' => 'background', 'fields_options' => [ 'image' => [ // Currently isn't supported. 'dynamic' => [ 'active' => false, ], ], ], ] ); $document->add_responsive_control( 'padding', [ 'label' => __( 'Padding', 'elementor' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}}' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}}', ], ] ); $document->end_controls_section(); Plugin::$instance->controls_manager->add_custom_css_controls( $document ); } /** * @since 2.0.0 * @access public * @static * @param Document $document */ public static function register_post_fields_control( $document ) { $document->start_injection( [ 'of' => 'post_status', 'fallback' => [ 'of' => 'post_title', ], ] ); if ( post_type_supports( $document->post->post_type, 'excerpt' ) ) { $document->add_control( 'post_excerpt', [ 'label' => __( 'Excerpt', 'elementor' ), 'type' => Controls_Manager::TEXTAREA, 'default' => $document->post->post_excerpt, ] ); } if ( current_theme_supports( 'post-thumbnails' ) && post_type_supports( $document->post->post_type, 'thumbnail' ) ) { $document->add_control( 'post_featured_image', [ 'label' => __( 'Featured Image', 'elementor' ), 'type' => Controls_Manager::MEDIA, 'default' => [ 'id' => get_post_thumbnail_id(), 'url' => get_the_post_thumbnail_url( $document->post->ID ), ], ] ); } $document->end_injection(); } /** * @since 2.0.0 * @access public * * @param array $data * * @throws \Exception */ public function __construct( array $data = [] ) { if ( $data ) { $template = get_post_meta( $data['post_id'], '_wp_page_template', true ); if ( empty( $template ) ) { $template = 'default'; } $data['settings']['template'] = $template; } parent::__construct( $data ); } protected function get_remote_library_config() { $config = parent::get_remote_library_config(); $config['category'] = ''; $config['type'] = 'page'; $config['default_route'] = 'templates/pages'; return $config; } } page.php 0000666 00000001030 15214176303 0006171 0 ustar 00 <?php namespace Elementor\Core\DocumentTypes; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Page extends PageBase { public static function get_properties() { $properties = parent::get_properties(); $properties['cpt'] = [ 'page' ]; $properties['support_kit'] = true; return $properties; } /** * @access public */ public function get_name() { return 'wp-page'; } /** * @access public * @static */ public static function get_title() { return __( 'Page', 'elementor' ); } }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings