| 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 |
|