/**
  * Return an instance of this class.
  *
  * @since     1.0.0
  *
  * @return    object    A single instance of this class.
  */
 public static function get_instance()
 {
     // If the single instance hasn"t been set, set it now.
     if (null == self::$instance) {
         self::$instance = new self();
     }
     return self::$instance;
 }
            <td class="column-columnname">product</td>
        </tr>
        <tr>
            <td class="column-columnname">accessories</td>
            <td class="column-columnname">Tobbaco Accessories</td>
            <td class="column-columnname">Tobbaco Accessories description</td>
            <td class="column-columnname">tobbaco-accessories</td>
            <td class="column-columnname">product</td>
        </tr>
    </tbody>
</table>
<p>And parent must be declared prior to the child since the importer will work from the top down... NO CAPS OR SPACES IN THE SLUG FIELDS!</p>
<p>The first image in the description will be used as the default cat image and text will be used as the description, you can use html in the description but it will all be stripped</p>
<p>For the images just leave the old url in I.E <code>%%GLOBAL_ShopPath%%/path/to/image/image.jpg</code> this plugin will go and find them and upload them to the wordpress media library and assing it to the category :D </p>
<?php 
$vartest = Import_categories::get_instance();
?>
	<?php 
if (isset($_GET["settings-updated"])) {
    $vartest->import_function();
} else {
}
?>
	<form method="post" action="options.php">
	    <?php 
settings_fields('baw-settings-group');
?>
	    <?php 
do_settings_sections('baw-settings-group');
?>
	    <?php