Aqui está uma função que permite adicionar novos dinamicamente. Também chama a função de pré-processo correspondente se você tiver uma declarada.
Em seguida, ligue drush cache-clear theme-registry
para fazê-lo funcionar.
Para usá-lo, substitua THEME pelo nome do seu tema e coloque-o no arquivo template.php de temas.
por exemplo, para um tema chamado Droid, você o chamaria droid_preprocess_node(&$variables, $hook) {
...
function THEME_preprocess_node(&$variables, $hook) {
$view_mode = $variables['view_mode'];
$content_type = $variables['type'];
$variables['theme_hook_suggestions'][] = 'node__' . $view_mode;
$variables['theme_hook_suggestions'][] = 'node__' . $view_mode . '_' . $content_type;
$view_mode_preprocess = 'THEME_preprocess_node_' . $view_mode . '_' . $content_type;
if (function_exists($view_mode_preprocess)) {
$view_mode_preprocess($variables, $hook);
}
$view_mode_preprocess = 'THEME_preprocess_node_' . $view_mode;
if (function_exists($view_mode_preprocess)) {
$view_mode_preprocess($variables, $hook);
}
}