How to Postfix module name to every View

Hi,

Is there an easy way to do this? Sometimes the title ‘Create’ is not enough - much easier to see ‘Create: Project’ or ’ Create: Contact’.

I’m currently achieving this with the _getModuleTitleParams in the custom folder for each module, but i’m sure its my lack of understanding.

How can i add the module name to each view title?

Thanks

This function is making titles for views, Try to make a custom function for this.
public function get_summary_text()
{
return $this->name;
}

thanks ashish, will give it a try