/**
  * Renders Form Object
  *
  * @since  1.0.0
  * @access public
  *
  * @return void
  */
 public function form()
 {
     $this->form->xml = $this->xml;
     $this->form->values = $this->xml->get_options();
     $this->form->options_str = $this->options_str;
     $this->form->title = $this->page_title;
     $this->form->settings_fields = $this->options_grp;
     $this->form->settings_sections = $this->plugin_slug;
     $this->form->render_form();
 }