| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Implementation of hook_ctools_plugin_api(). 5 */ 6 function fyeo_lineup_ctools_plugin_api() { 7 list($module, $api) = func_get_args(); 8 if ($module == "strongarm" && $api == "strongarm") { 9 return array("version" => 1); 10 } 11 } 12 13 /** 14 * Implementation of hook_node_info(). 15 */ 16 function fyeo_lineup_node_info() { 17 $items = array( 18 'fyeo_lineup' => array( 19 'name' => t('FYEO Lineup'), 20 'module' => 'features', 21 'description' => t('Weekly podcast'), 22 'has_title' => '1', 23 'title_label' => t('Title'), 24 'has_body' => '1', 25 'body_label' => t('Body'), 26 'min_word_count' => '0', 27 'help' => '', 28 ), 29 ); 30 return $items; 31 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |