I have created a custom module to sync product details. There is a cron job configured to run model "my_module/Cron::syncDetail". I would like to convert this to a manual job in admin menu.
The syncDetail function in Cron.php is executing
Mage::getModel('My_Module_Model_Product')->syncDetails();
i have managed to create the admin menu drop down, however i can't figure out what to put in the action of the menu.
my question is what is the correct action to directly call the model function?