Astra_Get_Preload_Local_Fonts
Description
Source
File: inc/abilities/admin/settings/performance/class-astra-get-preload-local-fonts.php
class Astra_Get_Preload_Local_Fonts extends Astra_Abstract_Ability {
/**
* Configure the ability.
*
* @return void
*/
public function configure() {
$this->id = 'astra/get-font-preload-local';
$this->label = __( 'Get Astra Preload Local Fonts Status', 'astra' );
$this->description = __( 'Retrieves the Preload Local Fonts setting for the Astra theme (enabled or disabled).', 'astra' );
$this->category = 'astra';
}
/**
* Get input schema.
*
* @return array
*/
public function get_input_schema() {
return array();
}
/**
* Get examples.
*
* @return array
*/
public function get_examples() {
return array(
'get preload local fonts status',
'show preload fonts setting',
'view preload local fonts',
'display fonts preloading status',
'get local fonts preload setting',
'show if fonts are preloaded',
'view fonts preload configuration',
'display preload fonts status',
'get fonts preloading setting',
'show local fonts preload status',
'view preload setting for fonts',
'display fonts eager loading',
'get fonts preload on page load',
'show fonts immediate loading',
'view fonts preload optimization',
'display preload local fonts setting',
'get fonts instant loading status',
'show fonts preload feature',
'view local fonts eager load',
'display fonts preload performance',
'get fonts priority loading',
'show preload fonts optimization',
'view fonts fast loading setting',
'display fonts preload behavior',
'get fonts immediate load status',
'show fonts preload configuration',
'view fonts speed optimization',
'display local fonts preload',
'get fonts quick load setting',
'show fonts preload on startup',
);
}
/**
* Execute the ability.
*
* @param array $args Input arguments.
* @return array Result array.
*/
public function execute( $args ) {
if ( ! defined( 'ASTRA_THEME_SETTINGS' ) ) {
return Astra_Abilities_Response::error(
__( 'Astra theme is not active.', 'astra' ),
__( 'Please activate the Astra theme to use this feature.', 'astra' )
);
}
if ( ! class_exists( 'Astra_API_Init' ) ) {
return Astra_Abilities_Response::error(
__( 'Astra API not available.', 'astra' ),
__( 'Please ensure Astra theme is properly loaded.', 'astra' )
);
}
$enabled = Astra_API_Init::get_admin_settings_option( 'preload_local_fonts', false );
$load_locally_enabled = Astra_API_Init::get_admin_settings_option( 'self_hosted_gfonts', false );
return Astra_Abilities_Response::success(
__( 'Retrieved Preload Local Fonts status successfully.', 'astra' ),
array(
'enabled' => (bool) $enabled,
'enabled_label' => $enabled ? 'Enabled' : 'Disabled',
'load_locally_enabled' => (bool) $load_locally_enabled,
'load_locally_required' => ! $load_locally_enabled,
)
);
}
}
Expand full source code Collapse full source code View on Trac
Methods
- configure — Configure the ability.
- execute — Execute the ability.
- get_examples — Get examples.
- get_input_schema — Get input schema.