You are here

README.txt in Page Title 6.2

********************************************************************
                P A G E    T I T L E    M O D U L E
********************************************************************
Original Author: Robert Douglass
Current Maintainers: Nicholas Thompson and John Wilkins

********************************************************************
DESCRIPTION:

   This module gives you control over the page title. It gives you the chance
   to provide patterns for how the title should be structured, and on node
   pages, gives you the chance to specify the page title rather than defaulting
   to the node title.

********************************************************************
PERMISSIONS:

   This module defines the "set page title" and "administer page titles"
   permissions. The "set page title" permission determines whether a user will
   be able to edit the "Page title" field on node edit forms (if visible.) The
   "administer page titles" permission determines whether a user will be able to
   edit the "Page title" administration pages.

********************************************************************
INSTALLATION:

1. Place the entire page_title directory into your Drupal modules/
   directory or the sites modules directory (eg site/default/modules)


2. Enable this module by navigating to:

     Administer > Build > Modules

   At this point the Drupal install system will attempt to create the database
   table page_title. You should see a message confirming success or
   proclaiming failure. If the database table creation did not succeed,
   you will need to manually add the following table definition to your
   database:

    CREATE TABLE `page_title` (
      `type` varchar(15) NOT NULL default 'node',
      `id` int(10) unsigned NOT NULL default '0',
      `page_title` varchar(255) NOT NULL default '',
      PRIMARY KEY  (`type`,`id`)
    );

3. Optionally configure the two variations of page title by visiting:

    Administer > Site configuration > Page title

   From the configuration page you can define "patterns" for sections of your
   site as well as toggling the visibility of the Page Title field.

4. Unlike Drupal 5, in Drupal 6 the Page Title module requires no modification
   to the theme at all.

File

README.txt
View source
  1. ********************************************************************
  2. P A G E T I T L E M O D U L E
  3. ********************************************************************
  4. Original Author: Robert Douglass
  5. Current Maintainers: Nicholas Thompson and John Wilkins
  6. ********************************************************************
  7. DESCRIPTION:
  8. This module gives you control over the page title. It gives you the chance
  9. to provide patterns for how the title should be structured, and on node
  10. pages, gives you the chance to specify the page title rather than defaulting
  11. to the node title.
  12. ********************************************************************
  13. PERMISSIONS:
  14. This module defines the "set page title" and "administer page titles"
  15. permissions. The "set page title" permission determines whether a user will
  16. be able to edit the "Page title" field on node edit forms (if visible.) The
  17. "administer page titles" permission determines whether a user will be able to
  18. edit the "Page title" administration pages.
  19. ********************************************************************
  20. INSTALLATION:
  21. 1. Place the entire page_title directory into your Drupal modules/
  22. directory or the sites modules directory (eg site/default/modules)
  23. 2. Enable this module by navigating to:
  24. Administer > Build > Modules
  25. At this point the Drupal install system will attempt to create the database
  26. table page_title. You should see a message confirming success or
  27. proclaiming failure. If the database table creation did not succeed,
  28. you will need to manually add the following table definition to your
  29. database:
  30. CREATE TABLE `page_title` (
  31. `type` varchar(15) NOT NULL default 'node',
  32. `id` int(10) unsigned NOT NULL default '0',
  33. `page_title` varchar(255) NOT NULL default '',
  34. PRIMARY KEY (`type`,`id`)
  35. );
  36. 3. Optionally configure the two variations of page title by visiting:
  37. Administer > Site configuration > Page title
  38. From the configuration page you can define "patterns" for sections of your
  39. site as well as toggling the visibility of the Page Title field.
  40. 4. Unlike Drupal 5, in Drupal 6 the Page Title module requires no modification
  41. to the theme at all.