MailPoet\EmailEditor\Engine
Settings_Controller::get_layout()
Returns the layout settings for the email editor.
Method of the class: Settings_Controller{}
No Hooks.
Return
Array{contentSize:
. string, wideSize: string}
Usage
$Settings_Controller = new Settings_Controller(); $Settings_Controller->get_layout(): array;
Settings_Controller::get_layout() Settings Controller::get layout code WC 9.8.2
public function get_layout(): array { $layout_settings = $this->theme_controller->get_layout_settings(); return array( 'contentSize' => $layout_settings['contentSize'], 'wideSize' => $layout_settings['wideSize'], ); }