Documentation

CustomCSSSettingsSection extends SettingsSection
in package

Class defining plugin referrer and tooltips settings.

Tags
since
2.8.0

Table of Contents

$options_group_slug  : string
Setting options group slug.
$section_slug  : string
Settings section slug.
$settings_groups  : array<string|int, mixed>
The groups of settings within this section.
$title  : string
Settings section title.
$settings  : Settings
The plugin settings object.
__construct()  : mixed
Constructs the settings section.
add_settings_fields()  : void
add_settings_section()  : void
get_options()  : array<string|int, mixed>
Creates an options group from the values of the settings in this section.
get_options_group_slug()  : string
get_section_slug()  : string
Gets the settings section slug.
get_setting()  : Setting|null
Retrieve a setting by its key.
get_setting_value()  : mixed
Retrieve a setting's default value by its key.
get_settings_group()  : SettingsGroup|null
Gets a settings groups from this section by its ID.
get_title()  : string
Gets the settings section title.
load_options_group()  : void
set_setting_value()  : bool|null
Set a setting's value by its key.
setting_section_callback()  : void
add_settings_groups()  : void
Add the settings groups for this settings section.
load_dependencies()  : void
Load the required dependencies.

Properties

$options_group_slug

Setting options group slug.

protected string $options_group_slug
Tags
since
2.8.0

$settings_groups

The groups of settings within this section.

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

Methods

__construct()

Constructs the settings section.

public __construct(string $options_group_slug, string $section_slug, string $title, Settings $settings) : mixed
Parameters
$options_group_slug : string

The slug of the settings section's options group.

$section_slug : string

The slug of the settings section.

$title : string

The name of the settings section.

$settings : Settings
Tags
since
2.8.0
Return values
mixed

add_settings_fields()

public add_settings_fields(mixed $component) : void
Parameters
$component : mixed
Return values
void

get_options()

Creates an options group from the values of the settings in this section.

public get_options() : array<string|int, mixed>
Tags
since
2.8.0
Return values
array<string|int, mixed>

The options group.

get_section_slug()

Gets the settings section slug.

public get_section_slug() : string
Tags
since
2.8.0
Return values
string

The section slug.

get_setting()

Retrieve a setting by its key.

public get_setting(string $setting_key) : Setting|null
Parameters
$setting_key : string
Tags
see
Settings::get_setting()
Return values
Setting|null

get_setting_value()

Retrieve a setting's default value by its key.

public get_setting_value(string $setting_key) : mixed
Parameters
$setting_key : string
Tags
see
Settings::get_setting_value()
Return values
mixed

get_settings_group()

Gets a settings groups from this section by its ID.

public get_settings_group(string $group_id) : SettingsGroup|null
Parameters
$group_id : string

The ID of the settings group.

Tags
since
2.8.0
Return values
SettingsGroup|null

The section group. 'None' if none found.

get_title()

Gets the settings section title.

public get_title() : string
Tags
since
2.8.0
Return values
string

The section title.

set_setting_value()

Set a setting's value by its key.

public set_setting_value(string $setting_key, mixed $value) : bool|null
Parameters
$setting_key : string
$value : mixed
Tags
see
Settings::set_setting_value()
Return values
bool|null

Search results