Documentation

TooltipDimensionsSettingsGroup extends SettingsGroup
in package

Class defining the tooltip dimension settings.

Tags
since
2.8.0

Table of Contents

FOOTNOTES_ALTERNATIVE_MOUSE_OVER_BOX_WIDTH  = array('key' => 'footnotes_inputfield_alternative_mouse_over_box_width', 'name' => 'Maximum Width (alternative tooltips)', 'default_value' => 400, 'type' => 'number', 'input_type' => 'number')
Settings container key for alternative tooltip width.
FOOTNOTES_MOUSE_OVER_BOX_MAX_WIDTH  = array('key' => 'footnote_inputfield_custom_mouse_over_box_max_width', 'name' => 'Maximum Width', 'description' => 'pixels; set to 0 for jQuery tooltips without max width', 'default_value' => 450, 'type' => 'number', 'input_type' => 'number')
Settings container key for the mouse-over box to define the max. width.
GROUP_ID  = 'tooltip-dimensions'
Setting group ID.
GROUP_NAME  = 'Tooltip Dimensions'
Setting group name.
$options_group_slug  : string
Setting options group slug.
$section_slug  : string
Setting section slug.
$setting_classes  : array<string|int, mixed>
The setting classes.
$settings  : array<string|int, mixed>
The settings in this group.
$settings_obj  : Settings
The plugin settings object.
__construct()  : mixed
Constructs the settings section.
add_settings_fields()  : void
Adds all the settings fields for this group to the admin. dashboard.
get_options()  : array<string|int, mixed>
get_setting()  : Setting|null
get_setting_value()  : mixed
set_setting_value()  : bool
add_setting()  : Setting
Constructs settings from the provided details.
add_settings()  : void
Add the settings for this settings group.
load_dependencies()  : void
Load the required dependencies.
load_values()  : void
Load the values for this settings group.

Constants

FOOTNOTES_ALTERNATIVE_MOUSE_OVER_BOX_WIDTH

Settings container key for alternative tooltip width.

public array<string|int, mixed> FOOTNOTES_ALTERNATIVE_MOUSE_OVER_BOX_WIDTH = array('key' => 'footnotes_inputfield_alternative_mouse_over_box_width', 'name' => 'Maximum Width (alternative tooltips)', 'default_value' => 400, 'type' => 'number', 'input_type' => 'number')
Tags
since
2.2.5
since
2.8.0

Move from Settings to ReferenceContainerSettingsGroup. Convert from string to array.

FOOTNOTES_MOUSE_OVER_BOX_MAX_WIDTH

Settings container key for the mouse-over box to define the max. width.

public array<string|int, mixed> FOOTNOTES_MOUSE_OVER_BOX_MAX_WIDTH = array('key' => 'footnote_inputfield_custom_mouse_over_box_max_width', 'name' => 'Maximum Width', 'description' => 'pixels; set to 0 for jQuery tooltips without max width', 'default_value' => 450, 'type' => 'number', 'input_type' => 'number')

The width should be limited to start with, for the box to have shape.

Tags
since
1.5.6
since
2.0.7

Set default width to 450.

since
2.8.0

Move from Settings to ReferenceContainerSettingsGroup. Convert from string to array.

Properties

$options_group_slug

Setting options group slug.

protected string $options_group_slug
Tags
since
2.8.0

$setting_classes

The setting classes.

protected array<string|int, mixed> $setting_classes
Tags
since
2.8.0

$settings

The settings in this group.

protected array<string|int, mixed> $settings
Tags
since
2.8.0

Methods

__construct()

Constructs the settings section.

public __construct(string $options_group_slug, string $section_slug, Settings $settings_obj) : mixed
Parameters
$options_group_slug : string
$section_slug : string
$settings_obj : Settings
Tags
since
2.8.0
Return values
mixed

add_settings_fields()

Adds all the settings fields for this group to the admin. dashboard.

public add_settings_fields(SettingsPage $component) : void
Parameters
$component : SettingsPage

The admin. dashboard settings page.

Tags
since
2.8.0
Return values
void

add_setting()

Constructs settings from the provided details.

protected add_setting(array<string, mixed> $setting) : Setting
Parameters
$setting : array<string, mixed>

The setting details.

Tags
since
2.8.0
Return values
Setting

The constructed setting object.

add_settings()

Add the settings for this settings group.

protected add_settings(array<string|int, mixed>|false $options) : void
Parameters
$options : array<string|int, mixed>|false

Saved values for the settings in this group. 'False' if none exist.

Tags
see
SettingsGroup::add_settings()
Return values
void

load_dependencies()

Load the required dependencies.

protected load_dependencies() : void

Include the following files that provide the settings for this plugin:

  • Setting: defines individual settings.
Tags
since
2.8.0
Return values
void

load_values()

Load the values for this settings group.

protected load_values(array<string, mixed>|false $options) : void
Parameters
$options : array<string, mixed>|false

Saved values for the settings in this group. 'False' if none exist.

Tags
since
2.8.0
todo

Remove settings from options group when not found.

Return values
void

Search results