Aquí hay una función que le permite agregar nuevas dinámicamente. También llama a la función de preproceso correspondiente si tiene una declarada.
Luego llame drush cache-clear theme-registry
para que funcione.
Para usarlo, reemplace THEME con el nombre de su tema y colóquelo en el archivo template.php de su tema.
Por ejemplo, para un tema llamado Droid lo llamarías 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);
}
}