I am trying to add local task tabs to my node/add/(type) pages, but it seems that the hook does not fire. A simple test:
<?php
function mymodule_menu_local_tasks_alter(&$data, $router_item, $root_path) {
print "I am called here!";
}
?>
You will see the print out on every page but not when creating a node from node/add/(type) pages.