Is there a way to hide a template file in admin?
For example I have a template that should only be available if a specific plugin is installed, and I already know how to check if plugin is active. But how do I hide the template?
For example I want to hide "Blogger Redirection"-template bellow:

I have found several links, but all of the solutions seems deprecated.
EDIT: If anyone is interested in how I check if pluin is active I do it with the following function:
function isPluginActive($plugin){
if ( in_array( $plugin, apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) )
{
return true;
}
return false;
}