By somes on
Just been checking out some of the notes on view theming
Have tried some of the code that is available on
http://drupal.org/node/42597
but when i try it on a 4.7 system getting the error message
Fatal error: Call to undefined function: _views_get_title() in C:\HOME\xampp\htdocs\drupal47\modules\myfunctions.module on line 6
Have had a quick look here online to see if i could find any info on
_views_get_title() but Im can find anything that might fix it so
I need to find out where
_views_get_title() id declared or do i have to write it
Comments
Take a look at views.modules
By definition a "_" prefixed fonction should not be used by external module in drupal ("_" means private). You'll find a "views_get_title" function in the views.module file. As far i know, the function is not themeable (its not a theme_function_name).So you'll better theme a function calling this one.
Hope it helps