/**
  * Outputs the header strings and necessary JS before each plugin installation.
  *
  * @since 2.2.0
  *
  * @param string $title Unused in this implementation.
  */
 public function before($title = '')
 {
     if (empty($title)) {
         $title = esc_html($this->plugin_names[$this->i]);
     }
     parent::before($title);
 }
	/**
	 *
	 * @param string $title
	 */
	public function before($title = '') {
		parent::before( $this->theme_info->display('Name') );
	}
 function before()
 {
     parent::before($this->theme_info['Name']);
 }
 /**
  *
  * @param string $title
  */
 public function before($title = '')
 {
     parent::before($this->plugin_info['Title']);
 }
 function before()
 {
     parent::before($this->theme_info->display('Name'));
 }
 function before($title = '')
 {
     Bulk_Upgrader_Skin::before($this->pk_name);
 }