• File: link-control.php
  • Full Path: /home/blwgracecity/jesusexp.org/wp-content/plugins/elementor/modules/atomic-widgets/controls/types/link-control.php
  • File size: 1.87 KB
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Elementor\Modules\AtomicWidgets\Controls\Types;

use Elementor\Modules\AtomicWidgets\Base\Atomic_Control_Base;
use Elementor\Modules\WpRest\Classes\WP_Post;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Link_Control extends Atomic_Control_Base {
	private bool $allow_custom_values = true;
	private int $minimum_input_length = 2;
	private ?string $placeholder = null;
	private array $query_options = [
		'endpoint' => '',
		'requestParams' => [],
	];

	public static function bind_to( string $prop_name ) {
		$instance = parent::bind_to( $prop_name );
		$instance->set_placeholder( __( 'Paste URL or type', 'elementor' ) );
		$instance->set_endpoint( WP_Post::ENDPOINT );
		$instance->set_request_params( WP_Post::build_query_params( [
			WP_Post::KEYS_FORMAT_MAP_KEY => [
				'ID' => 'id',
				'post_title' => 'label',
				'post_type' => 'groupLabel',
			],
		] ) );

		return $instance;
	}

	public function get_type(): string {
		return 'link';
	}

	public function set_placeholder( string $placeholder ): self {
		$this->placeholder = $placeholder;

		return $this;
	}

	public function get_props(): array {
		return [
			'placeholder' => $this->placeholder,
			'allowCustomValues' => $this->allow_custom_values,
			'queryOptions' => $this->query_options,
			'minInputLength' => $this->minimum_input_length,
		];
	}

	public function set_allow_custom_values( bool $allow_custom_values ): self {
		$this->allow_custom_values = $allow_custom_values;

		return $this;
	}

	public function set_endpoint( string $url ): self {
		$this->query_options['endpoint'] = $url;

		return $this;
	}

	public function set_request_params( array $params ): self {
		$this->query_options['requestParams'] = $params;

		return $this;
	}

	public function set_minimum_input_length( int $input_length ): self {
		$this->minimum_input_length = $input_length;

		return $this;
	}
}