/[drupal]/contributions/modules/revisions_rss/revisions_rss.admin.inc
ViewVC logotype

Contents of /contributions/modules/revisions_rss/revisions_rss.admin.inc

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


Revision 1.1 - (show annotations) (download) (as text)
Wed Jan 21 21:29:18 2009 UTC (10 months ago) by alexj
Branch: MAIN
CVS Tags: DRUPAL-6--1-0, HEAD
File MIME type: text/x-php
6.x-1.0 release
1 <?php
2 // $Id: revisions_rss.module,v 1.3 2009/01/21 02:49:43 alexj Exp $
3
4 /**
5 * @file
6 * Administration callbacks for Revisions RSS.
7 */
8
9 /**
10 * Menu callback; displays the Revisions RSS admin settings page.
11 */
12 function revision_rss_admin_settings() {
13 $form['revision_rss_nodetypes'] = array(
14 '#type' => 'checkboxes',
15 '#title' => t('Generate RSS for these node types'),
16 '#options' => node_get_types('names'),
17 '#default_value' => variable_get('revision_rss_nodetypes', array('page')));
18 $form['array_filter'] = array('#type' => 'hidden');
19
20 return system_settings_form($form);
21 }

  ViewVC Help
Powered by ViewVC 1.1.2