<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php

namespace WPForms\Admin\Education\Admin\Settings;

use \WPForms\Admin\Education\AddonsListBase;

/**
 * Base class for Admin/Integrations feature for Lite and Pro.
 *
 * @since 1.6.6
 */
class Integrations extends AddonsListBase {

	/**
	 * Template for rendering single addon item.
	 *
	 * @since 1.6.6
	 *
	 * @var string
	 */
	protected $single_addon_template = 'education/admin/settings/integrations-item';

	/**
	 * Hooks.
	 *
	 * @since 1.6.6
	 */
	public function hooks() {

		add_action( 'wpforms_settings_providers', [ $this, 'filter_addons' ], 1 );
		add_action( 'wpforms_settings_providers', [ $this, 'display_addons' ], 500 );
	}

	/**
	 * Indicate if current Education feature is allowed to load.
	 *
	 * @since 1.6.6
	 *
	 * @return bool
	 */
	public function allow_load() {

		return wpforms_is_admin_page( 'settings', 'integrations' );
	}

	/**
	 * Get addons for the Settings/Integrations tab.
	 *
	 * @since 1.6.6
	 *
	 * @return array Addons data.
	 */
	protected fun