ACF_Location_Options_Page{}ACF 1.0

Хуков нет.

Использование

$ACF_Location_Options_Page = new ACF_Location_Options_Page();
// use class methods

Методы

  1. public get_values( $rule )
  2. public initialize()
  3. public match( $rule, $screen, $field_group )

Код ACF_Location_Options_Page{} ACF 6.0.4

class ACF_Location_Options_Page extends ACF_Location {

	/**
	 * Initializes props.
	 *
	 * @date    5/03/2014
	 * @since   5.0.0
	 *
	 * @param   void
	 * @return  void
	 */
	public function initialize() {
		$this->name        = 'options_page';
		$this->label       = __( 'Options Page', 'acf' );
		$this->category    = 'forms';
		$this->object_type = 'option';
	}

	/**
	 * Matches the provided rule against the screen args returning a bool result.
	 *
	 * @date    9/4/20
	 * @since   5.9.0
	 *
	 * @param   array $rule The location rule.
	 * @param   array $screen The screen args.
	 * @param   array $field_group The field group settings.
	 * @return  bool
	 */
	public function match( $rule, $screen, $field_group ) {

		// Check screen args.
		if ( isset( $screen['options_page'] ) ) {
			$options_page = $screen['options_page'];
		} else {
			return false;
		}

		// Compare rule against $nav_menu.
		return $this->compare_to_rule( $options_page, $rule );
	}

	/**
	 * Returns an array of possible values for this rule type.
	 *
	 * @date    9/4/20
	 * @since   5.9.0
	 *
	 * @param   array $rule A location rule.
	 * @return  array
	 */
	public function get_values( $rule ) {
		$choices = array();

		// Append pages.
		$pages = acf_get_options_pages();
		if ( $pages ) {
			foreach ( $pages as $page ) {
				$choices[ $page['menu_slug'] ] = $page['page_title'];
			}
		} else {
			$choices[''] = __( 'No options pages exist', 'acf' );
		}

		// Return choices.
		return $choices;
	}
}