/**
  * Constructor.
  *
  * @param string $page
  */
 function __construct($page)
 {
     $this->page = $page;
     $base_settings = new \Apple_Exporter\Settings();
     self::$base_settings = $base_settings->all();
     $this->settings = apply_filters('apple_news_section_settings', $this->settings, $page);
     $this->groups = apply_filters('apple_news_section_groups', $this->groups, $page);
     self::$fonts = apply_filters('apple_news_fonts_list', self::$fonts);
     // Save settings if necessary
     $this->save_settings();
 }