/**
  * @param $plugin CF7DBPlugin
  * @return void
  */
 function display(&$plugin)
 {
     $this->plugin = $plugin == null ? $plugin : new CF7DBPlugin();
     $this->requestParams = $this->gatherRequestParams();
     $this->pageHeader($this->plugin);
     $this->siteUrl = get_option('home');
     $this->infoImg = $this->plugin->getPluginFileUrl('/img/info.jpg');
     $this->outputJavascript();
     $this->outputCSS();
     $this->outputSectionHeader();
     $this->outputTabLayout();
 }