simplenews_scheduler.install in Simplenews Scheduler 2.0.x
Same filename and directory in other branches
Install and uninstall functions for the Simplenews Scheduler module.
File
simplenews_scheduler.installView source
<?php
/**
* @file
* Install and uninstall functions for the Simplenews Scheduler module.
*/
/**
* Implements hook_schema().
*/
function simplenews_scheduler_schema() {
$schema['simplenews_scheduler'] = array(
'description' => 'Scheduled newsletter data.',
'fields' => array(
'nid' => array(
'description' => 'The node id for a scheduled newsletter.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'last_run' => array(
'description' => 'The timestamp the scheduled newsletter was last sent.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'next_run' => array(
'description' => 'The future timestamp the next scheduled newsletter is due to be sent.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'activated' => array(
'description' => 'Whether the schedule is active.',
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => 0,
),
'send_interval' => array(
'description' => 'The interval at which to send, as a text string.',
'type' => 'varchar',
'length' => 10,
),
'interval_frequency' => array(
'description' => 'The number of intervals between newsletter transmission.',
'type' => 'int',
'default' => 1,
'not null' => TRUE,
),
'start_date' => array(
'description' => 'The timestamp at which to start sending editions.',
'type' => 'int',
'not null' => TRUE,
),
'stop_type' => array(
'description' => 'How to determine when to stop sending editions.',
'type' => 'int',
'not null' => TRUE,
),
'stop_date' => array(
'description' => 'The timestamp at which to stop sending editions.',
'type' => 'int',
'not null' => TRUE,
'default' => 1388447999,
),
'stop_edition' => array(
'description' => 'The edition count at which to stop sending editions.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'title' => array(
'description' => 'The title of new edition nodes.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
),
'primary key' => array(
'nid',
),
);
$schema['simplenews_scheduler_editions'] = array(
'description' => 'Stores data for each edition of a scheduled newsletter.',
'fields' => array(
'eid' => array(
'description' => 'The node id for the edition.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'pid' => array(
'description' => 'The node id for the parent scheduled newsletter node.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'date_issued' => array(
'description' => 'The timestamp on which this edition was sent.',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array(
'eid',
),
);
return $schema;
}
/**
* Implementation of hook_uninstall().
*/
function simplenews_scheduler_uninstall() {
drupal_uninstall_schema('simplenews_scheduler');
drupal_uninstall_schema('simplenews_scheduler_editions');
}
/**
* Implements hook_install().
*/
function simplenews_scheduler_install() {
// Update the module weight to run before simplenews.
module_set_weight('simplenews_scheduler', -1);
}
Functions
Name | Description |
---|---|
simplenews_scheduler_install | Implements hook_install(). |
simplenews_scheduler_schema | Implements hook_schema(). |
simplenews_scheduler_uninstall | Implementation of hook_uninstall(). |