Customised Locations need to make importable

So I used the Locations Module for my Sites Locations as similar, added additional fields and renamed module etc. I need to make it importable. I changed FP_Event_Locations_sugar.php importable to true but it still wont enable importing. Any ideas ?

Go to: ‘modules/ABC_Your_Module/ABC_Your_Module.php’ after the line that starts with ‘class’:

public $importable = true;

I have updated the following to importable :
but still does not allow importing on Event Locations ?

class FP_Event_Locations_sugar extends Basic
{
public $new_schema = true;
public $module_dir = ‘FP_Event_Locations’;
public $object_name = ‘FP_Event_Locations’;
public $table_name = ‘fp_event_locations’;
public $importable = true;
public $disable_row_level_security = true ; // to ensure that modules created and deployed under CE will continue to function under team security if the instance is upgraded to PRO
public $id;
public $name;
public $date_entered;
public $date_modified;
public $modified_user_id;
public $modified_by_name;
public $created_by;
public $created_by_name;
public $description;
public $deleted;
public $created_by_link;
public $modified_user_link;
public $assigned_user_id;
public $assigned_user_name;
public $assigned_user_link;

Ok it’s not that simple. I went here …/index.php?module=Import&action=Step1&import_module=FP_Event_Locations&return_module=FP_Event_Locations&return_action=index

and I get an error Imports aren’t setup for this module type.

You’ll have to have a look at other modules and see how they implement imports and try and extend the functionality of this module.