I am new to drupal and i want my content title unique so is there any module available for it or if i can implement autocomplete to view my past title name. please give answer in detail
Thanks in advance :)
I am new to drupal and i want my content title unique so is there any module available for it or if i can implement autocomplete to view my past title name. please give answer in detail
Thanks in advance :)
You can use http://drupal.org/project/unique_field module. It performs additional validation when a node is created or updated by a user to require that a node's title or other specified fields are unique.
Scenario #1 - Unique Node
hook_node_validate() is what you need, if you are working with Drupal 7
Either you can simply use this below mentioned code in your custom module or you can take a pull from unique_title git repository which you have to pull into your modules directory of your project and then activate the module.
Scenario #2 - Autocomplete Node Title
hook_form_alter() & hook_menu() can help you in this for the autocomplete of Node titles while working with Drupal 7.
Either you can simply use this below mentioned code in your custom module or you can take a pull from autocomplete git repository which you have to pull into your modules directory of your project and then activate the module.
In your custom module use the below mentioned code:
In your module.inc file use the below mentioned AJAX callback: