MailPoet\EmailEditor\Engine

Settings_Controller::translate_slug_to_font_size()publicWC 1.0

Translate slug to font size.

Method of the class: Settings_Controller{}

No Hooks.

Return

String.

Usage

$Settings_Controller = new Settings_Controller();
$Settings_Controller->translate_slug_to_font_size( $font_size ): string;
$font_size(string) (required)
Font size slug.

Settings_Controller::translate_slug_to_font_size() code WC 9.8.2

public function translate_slug_to_font_size( string $font_size ): string {
	return $this->theme_controller->translate_slug_to_font_size( $font_size );
}