/[drupal]/contributions/modules/page_title/page_title.module
ViewVC logotype

Diff of /contributions/modules/page_title/page_title.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.20, Thu Oct 29 18:11:19 2009 UTC revision 1.21, Sat Oct 31 14:02:28 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: page_title.module,v 1.19 2009/08/15 22:05:04 njt1982 Exp $  // $Id: page_title.module,v 1.20 2009/10/29 18:11:19 njt1982 Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 40  function page_title_help($path, $arg) { Line 40  function page_title_help($path, $arg) {
40  /**  /**
41   * Implement hook_perm().   * Implement hook_perm().
42   */   */
43  function page_title_perm() {  function page_title_permission() {
44    return array('set page title', 'administer page titles');    return array(
45        'set page title' => array(
46          'title' => t('Set Page Title'),
47          'description' => t('Allow user to set or modify a page title'),
48        ),
49        'administer page titles' => array(
50          'title' => t('Administer Page Title'),
51          'description' => t('Perform administration tasks for Page Title'),
52        ),
53      );
54  }  }
55    
56    
# Line 74  function page_title_theme() { Line 83  function page_title_theme() {
83        'render element' => 'form',        'render element' => 'form',
84        'file' => 'page_title.admin.inc',        'file' => 'page_title.admin.inc',
85      ),      ),
86        'page_title_token_help' => array(
87          'file' => 'page_title.admin.inc',
88        ),
89      'page_title_preprocess_html' => array(      'page_title_preprocess_html' => array(
90        'arguments' => array('vars' => NULL),        'arguments' => array('vars' => NULL),
91      ),      ),

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21

  ViewVC Help
Powered by ViewVC 1.1.2