Ext Load Order

You can define a public $priority = x; property on your extension class, where x is an integer from 0 to 100.
 
does it go like this?

// set priorty
public $priority = 1;

// name of the extension as shown in the backend panel
public $name = 'Customer Menu SendReach Addons';

// description of the extension as shown in backend panel
public $description = 'Additional addons for the customers.';

// current version of this extension
public $version = '1.0';
 
Back
Top