~edb/quam-plures/cronjob_stuff

« back to all changes in this revision

Viewing changes to qp_inc/collections/views/_coll_features.form.php

  • Committer: EdB
  • Date: 2011-03-14 23:08:04 UTC
  • mfrom: (7592.1.5 quam-plures)
  • Revision ID: 1912webworks@gmail.com-20110314230804-k6655llduz0wzzk8
+core updates

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
 
122
122
$Form->begin_fieldset( T_('Subscriptions') );
123
123
        $Form->checkbox( 'allow_subscriptions', $edited_Blog->get_setting( 'allow_subscriptions' ), T_('Email subscriptions'), T_('Allow users to subscribe and receive email notifications for each new post and/or comment.') );
 
124
        $notify_options = array( 'none' => T_('No content'), 'excerpt' => T_('Excerpt only'), 'stop_more' => T_('Item up to "read more"'), 'full_item' => T_('Full item') );
 
125
        $Form->select_input_array( 'send_subs_what', $edited_Blog->get_setting( 'send_subs_what' ), $notify_options,
 
126
                T_('Send subscribers'),
 
127
                T_('Select what content, if any, subscribers will get in their email notification') );
124
128
        // TODO: checkbox 'Enable RSS/Atom feeds'
125
129
        // TODO2: which feeds (templates)?
126
130
$Form->end_fieldset();