node_limit_role.install in Node Limit 6
Same filename and directory in other branches
Installation functions for module node_limit_role.
File
node_limit_role/node_limit_role.installView source
<?php
/**
* @file
* Installation functions for module node_limit_role.
*/
/**
* Implementation of hook_install().
*/
function node_limit_role_install() {
db_query("DROP TABLE IF EXISTS {node_limit_role}");
drupal_install_schema('node_limit_role');
}
/**
* Implementation of hook_schema().
*/
function node_limit_role_schema() {
$schema['node_limit_role'] = array(
'description' => t('The table for applying node limits to a role'),
'fields' => array(
'lid' => array(
'description' => t('The {node_limit}.lid'),
'type' => 'int',
'not null' => TRUE,
),
'rid' => array(
'description' => t('The {role}.rid to which this limit applies'),
'type' => 'int',
'not null' => TRUE,
'unsigned' => TRUE,
),
),
//the limit-user combination is unique
/**
* this means that in the future, we may allow a limit to be applied to more
* than one user. right now, though, its one-user-per-limit
*/
'primary key' => array(
'lid',
'rid',
),
);
return $schema;
}
/**
* Implementation of hook_uninstall().
*/
function node_limit_role_uninstall() {
drupal_uninstall_schema('node_limit_role');
}
Functions
Name | Description |
---|---|
node_limit_role_install | Implementation of hook_install(). |
node_limit_role_schema | Implementation of hook_schema(). |
node_limit_role_uninstall | Implementation of hook_uninstall(). |