/[drupal]/contributions/modules/subscriptions/subscriptions.install.inc
ViewVC logotype

Contents of /contributions/modules/subscriptions/subscriptions.install.inc

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


Revision 1.7 - (show annotations) (download) (as text)
Thu Sep 3 00:25:16 2009 UTC (2 months, 3 weeks ago) by salvis
Branch: MAIN
CVS Tags: DRUPAL-6--1-1, HEAD
Changes since 1.6: +2 -2 lines
File MIME type: text/x-php
#560146: Allow specifying a cron job time percentage (including 0 to temporarily disable notifications).
1 <?php
2 // $Id: subscriptions.install.inc,v 1.6 2008/06/18 15:28:56 salvis Exp $
3
4 /**
5 * @file
6 * Subscriptions module installation load-on-demand reminder message.
7 */
8
9 /**
10 * User information message at installation and pre-5.x-2.0 upgrade time.
11 */
12 function _subscriptions_install_information() {
13 $t = get_t();
14 $tr = $t;
15 drupal_set_message($t('Note: For standard Subscriptions functionality you need to enable the following modules:')
16 .'<ul><li>'. $tr('Subscriptions UI') .'</li><li>'. $tr('Subscriptions Mail ') .
17 $t('(requires !mail_edit for customizing the templates)',
18 array(
19 '!mail_edit' => l($tr('Mail Editor'), 'http://drupal.org/project/mail_edit', array('target' => '_blank')),
20 ))
21 .'</li><li>'. $tr('Content Subscriptions') .'</li><li>'. $tr('Taxonomy Subscriptions') .'</li></ul>', 'warning', FALSE);
22 }
23

  ViewVC Help
Powered by ViewVC 1.1.2