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

Diff of /contributions/modules/article/article.module

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

revision 1.23.2.5.2.1.2.13.2.1, Fri Aug 29 20:30:37 2008 UTC revision 1.23.2.5.2.1.2.13.2.2, Sat Dec 6 00:12:02 2008 UTC
# Line 1  Line 1 
1  <?php // -*-php-*-  <?php // -*-php-*-
2  // $Id: article.module,v 1.23.2.5.2.1.2.13 2008/01/06 01:55:09 msameer Exp $  // $Id: article.module,v 1.23.2.5.2.1.2.13.2.1 2008/08/29 20:30:37 msameer Exp $
3    
4  /**  /**
5    Article Module - an easy to use integrated article management module.    Article Module - an easy to use integrated article management module.
# Line 17  Line 17 
17  **/  **/
18    
19  /**  /**
20     * implementation of hook_theme()
21     */
22    
23    function article_theme() {
24      return array(
25                   'article_index' => array(
26                                            'arguments' => array(
27                                                                 'name' => NULL, 'index_list' => NULL
28                                                                 )
29                                            ),
30    
31                   'article_list' => array(
32                                           'arguments' => array('output' => NULL)
33                                           ),
34    
35                   'article_index_item' => array(
36                                                 'arguments' => array('term' => NULL)
37                                                 ),
38    
39                   'article_more_info' => array(
40                                                'arguments' => array('content' => NULL)
41                                                ),
42                   );
43    }
44    
45    /**
46   * implementation of hook_block()   * implementation of hook_block()
47   */   */
48  function article_block($op = 'list', $delta = 0, $edit = array()) {  function article_block($op = 'list', $delta = 0, $edit = array()) {

Legend:
Removed from v.1.23.2.5.2.1.2.13.2.1  
changed lines
  Added in v.1.23.2.5.2.1.2.13.2.2

  ViewVC Help
Powered by ViewVC 1.1.2