there is the function storm_dashboard_theme_registry_alter(&$theme_registry)
which captures themes and writes his own theme functions in the registry without the possibility of overwriting in the theme

/**
* Implement hook_theme_registry_alter().
*/
function storm_dashboard_theme_registry_alter(&$theme_registry) {
$theme_registry['stormorganization_view']['function'] = 'theme_storm_dashboard_org_view';
$theme_registry['stormproject_view']['function'] = 'theme_storm_dashboard_prj_view';
$theme_registry['stormtask_view']['function'] = 'theme_storm_dashboard_tsk_view';
$theme_registry['stormticket_view']['function'] = 'theme_storm_dashboard_tkt_view';
$theme_registry['stormnote_view']['function'] = 'theme_storm_dashboard_note_view';
$theme_registry['stormtimetracking_view']['function'] = 'theme_storm_dashboard_timetracking_view';
$theme_registry['stormperson_view']['function'] = 'theme_storm_dashboard_person_view';
}

no possibilty to overwrite them in the theme

Comments

kfritsche’s picture

Status: Active » Fixed

You are right.
Fixed and commited this issue, it is much clearer now.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.