Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing CCK Title for Form

By default a CCK form creation has a title of the form

 Create [Your Content Type Name Here]

I want to change mine to

 Register for Such and Such

It was suggested that I could use string-override, but I can't find the string to replace. I've also tried writing code to form_alter, but can't seem to figure out how to get the "title" to change.

Ideas?

like image 985
cgp Avatar asked May 12 '26 08:05

cgp


2 Answers

There are two possibilities, either you can use the theming laying and set $title variable used in the page templage. You can do this with a preprocess function like lazy suggests.

The other options which I prefer would be to use the drupal_set_title(), this would need to go in a module. I haven't tried this, but I would think that you could use this in your hook_form_alter() implementation. That way you could control which titles get changed pretty easily.

like image 186
googletorp Avatar answered May 13 '26 20:05

googletorp


Hook form_alter doesn't affect the title, but you can use a preprocess function:

Try this code to start:

function MYMODULENAME_preprocess(&$variables) {
  $variables['title'] = 'test title';
}
like image 25
lazysoundsystem Avatar answered May 13 '26 22:05

lazysoundsystem