Hook for server-based final validation of new comment
Jamroom Developers
The normal one you'd use is
'db_create_item'
If you were in a REAL bind after that there is
$func = jrCore_get_active_datastore_function($module, 'db_create_item');
Where you could choose not to use jamrooms datatore function and instead roll your own by copying the
_jrCore_db_create_item()
--
Yeah those are the last.
Another option to try is to change the priority of the module in its _meta() function, eg the jrSmiley module for some reason wants to be called later in the flow so sets its weight to 80
function jrSmiley_meta(){
return array(
'name' => 'Smiley Support',
'url' => 'smiley',
'version' => '1.4.2',
'developer' => 'The Jamroom Network, ©' . strftime('%Y'),
'description' => 'Replace smiley string with a graphic in text fields',
'doc_url' => 'https://www.jamroom.net/the-jamroom-network/documentation/modules/2915/smiley-support',
'category' => 'site',
'priority' => 80,
'license' => 'mpl',
'requires' => 'jrCore:6.5.0'
);
}
Setting your weight to even higher could put you later than whatever you want to avoid.