178 lines
4.8 KiB
Plaintext
178 lines
4.8 KiB
Plaintext
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Install, update, and uninstall functions for the Forum module.
|
||
|
*/
|
||
|
|
||
|
use Drupal\field\Entity\FieldStorageConfig;
|
||
|
use Drupal\taxonomy\Entity\Term;
|
||
|
|
||
|
/**
|
||
|
* Implements hook_install().
|
||
|
*/
|
||
|
function forum_install() {
|
||
|
// Set the weight of the forum.module to 1 so it is loaded after the taxonomy.module.
|
||
|
module_set_weight('forum', 1);
|
||
|
// Do not allow to delete the forum's node type machine name.
|
||
|
$locked = \Drupal::state()->get('node.type.locked');
|
||
|
$locked['forum'] = 'forum';
|
||
|
\Drupal::state()->set('node.type.locked', $locked);
|
||
|
|
||
|
if (!\Drupal::service('config.installer')->isSyncing()) {
|
||
|
// Create a default forum so forum posts can be created.
|
||
|
$term = Term::create(array(
|
||
|
'name' => t('General discussion'),
|
||
|
'description' => '',
|
||
|
'parent' => array(0),
|
||
|
'vid' => 'forums',
|
||
|
'forum_container' => 0,
|
||
|
));
|
||
|
$term->save();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Implements hook_uninstall().
|
||
|
*/
|
||
|
function forum_uninstall() {
|
||
|
if ($field_storage = FieldStorageConfig::loadByName('node', 'taxonomy_forums')) {
|
||
|
$field_storage->delete();
|
||
|
}
|
||
|
|
||
|
if ($field_storage = FieldStorageConfig::loadByName('node', 'comment_forum')) {
|
||
|
$field_storage->delete();
|
||
|
}
|
||
|
|
||
|
if ($field_storage = FieldStorageConfig::loadByName('taxonomy_term', 'forum_container')) {
|
||
|
$field_storage->delete();
|
||
|
}
|
||
|
|
||
|
// Purge field data now to allow taxonomy and options module to be uninstalled
|
||
|
// if this is the only field remaining.
|
||
|
field_purge_batch(10);
|
||
|
// Allow to delete a forum's node type.
|
||
|
$locked = \Drupal::state()->get('node.type.locked');
|
||
|
unset($locked['forum']);
|
||
|
\Drupal::state()->set('node.type.locked', $locked);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Implements hook_schema().
|
||
|
*/
|
||
|
function forum_schema() {
|
||
|
$schema['forum'] = array(
|
||
|
'description' => 'Stores the relationship of nodes to forum terms.',
|
||
|
'fields' => array(
|
||
|
'nid' => array(
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
'description' => 'The {node}.nid of the node.',
|
||
|
),
|
||
|
'vid' => array(
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
'description' => 'Primary Key: The {node}.vid of the node.',
|
||
|
),
|
||
|
'tid' => array(
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
'description' => 'The {taxonomy_term_data}.tid of the forum term assigned to the node.',
|
||
|
),
|
||
|
),
|
||
|
'indexes' => array(
|
||
|
'forum_topic' => array('nid', 'tid'),
|
||
|
'tid' => array('tid'),
|
||
|
),
|
||
|
'primary key' => array('vid'),
|
||
|
'foreign keys' => array(
|
||
|
'forum_node' => array(
|
||
|
'table' => 'node',
|
||
|
'columns' => array(
|
||
|
'nid' => 'nid',
|
||
|
'vid' => 'vid',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
$schema['forum_index'] = array(
|
||
|
'description' => 'Maintains denormalized information about node/term relationships.',
|
||
|
'fields' => array(
|
||
|
'nid' => array(
|
||
|
'description' => 'The {node}.nid this record tracks.',
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
),
|
||
|
'title' => array(
|
||
|
'description' => 'The node title.',
|
||
|
'type' => 'varchar',
|
||
|
'length' => 255,
|
||
|
'not null' => TRUE,
|
||
|
'default' => '',
|
||
|
),
|
||
|
'tid' => array(
|
||
|
'description' => 'The term ID.',
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
),
|
||
|
'sticky' => array(
|
||
|
'description' => 'Boolean indicating whether the node is sticky.',
|
||
|
'type' => 'int',
|
||
|
'not null' => FALSE,
|
||
|
'default' => 0,
|
||
|
'size' => 'tiny',
|
||
|
),
|
||
|
'created' => array(
|
||
|
'description' => 'The Unix timestamp when the node was created.',
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
),
|
||
|
'last_comment_timestamp' => array(
|
||
|
'type' => 'int',
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
'description' => 'The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.',
|
||
|
),
|
||
|
'comment_count' => array(
|
||
|
'type' => 'int',
|
||
|
'unsigned' => TRUE,
|
||
|
'not null' => TRUE,
|
||
|
'default' => 0,
|
||
|
'description' => 'The total number of comments on this node.',
|
||
|
),
|
||
|
),
|
||
|
'indexes' => array(
|
||
|
'forum_topics' => array('nid', 'tid', 'sticky', 'last_comment_timestamp'),
|
||
|
'created' => array('created'),
|
||
|
'last_comment_timestamp' => array('last_comment_timestamp'),
|
||
|
),
|
||
|
'foreign keys' => array(
|
||
|
'tracked_node' => array(
|
||
|
'table' => 'node',
|
||
|
'columns' => array('nid' => 'nid'),
|
||
|
),
|
||
|
'term' => array(
|
||
|
'table' => 'taxonomy_term_data',
|
||
|
'columns' => array(
|
||
|
'tid' => 'tid',
|
||
|
),
|
||
|
),
|
||
|
),
|
||
|
);
|
||
|
|
||
|
return $schema;
|
||
|
}
|