| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 // $Id: audio_feeds.admin.inc,v 1.1 2009/11/28 01:38:42 drewish Exp $ 3 4 /** 5 * Settings form. 6 */ 7 function audio_feeds_admin() { 8 $form['audio_feeds_feed_links'] = array( 9 '#type' => 'checkboxes', 10 '#title' => t('Display feed links'), 11 '#options' => array('m3u' => t('M3U'), 'pls' => t('PLS'), 'xspf' => t('XSPF')), 12 '#default_value' => variable_get('audio_feeds_feed_links', array('m3u', 'pls', 'xspf')), 13 '#description' => t('If audio feeds are enabled on some content types, only those links that are checked here will be displayed. Keep in mind that this is only a display option and that clever users might still be able to find the paths of feeds that are not displayed.'), 14 ); 15 16 return system_settings_form($form); 17 }
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 |