Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/cwd/plugins/elementor-pro/modules/theme-builder/documents/ |
Upload File : |
<?php namespace ElementorPro\Modules\ThemeBuilder\Documents; use ElementorPro\Core\Utils; use ElementorPro\Modules\ThemeBuilder\Module as ThemeBuilderModule; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } abstract class Archive_Single_Base extends Theme_Page_Document { /** * Document sub type meta key. */ const REMOTE_CATEGORY_META_KEY = '_elementor_template_sub_type'; public static function get_sub_type() { return ''; } public static function get_create_url() { $create_url = parent::get_create_url(); $sub_type = static::get_sub_type(); if ( $sub_type ) { $create_url = add_query_arg( static::REMOTE_CATEGORY_META_KEY, static::get_sub_type(), $create_url ); } return $create_url; } /** * @access public */ public function save_template_type() { parent::save_template_type(); $this->save_sub_type_condition(); } private function save_sub_type_condition() { $conditions_manager = ThemeBuilderModule::instance()->get_conditions_manager(); $sub_type = Utils::_unstable_get_super_global_value( $_REQUEST, self::REMOTE_CATEGORY_META_KEY ); // phpcs:ignore WordPress.Security.NonceVerification.Recommended if ( ! empty( $sub_type ) && $conditions_manager->get_condition( $sub_type ) ) { $this->update_meta( self::REMOTE_CATEGORY_META_KEY, $sub_type ); $conditions_manager->save_conditions( $this->post->ID, [ [ 'include', $this->get_property( 'condition_type' ), $sub_type, ], ] ); } } }