updated imce, colorbox, admin_menu_source, honey_pot

This commit is contained in:
Bachir Soussi Chiadmi
2016-11-05 16:33:10 +01:00
parent 2e0abeed03
commit 7aeabebddf
28 changed files with 455 additions and 123 deletions

View File

@@ -6,7 +6,7 @@
*/
/**
* Implements of hook_schema().
* Implements hook_schema().
*/
function honeypot_schema() {
$schema['honeypot_user'] = array(
@@ -18,6 +18,12 @@ function honeypot_schema() {
'unsigned' => TRUE,
'not null' => TRUE,
),
'hostname' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'description' => 'Hostname of user that that triggered honeypot.',
),
'timestamp' => array(
'description' => 'Date/time when the form submission failed, as Unix timestamp.',
'type' => 'int',
@@ -146,3 +152,34 @@ function honeypot_update_7004() {
module_load_include('inc', 'honeypot', 'honeypot.admin');
honeypot_create_css(variable_get('honeypot_element_name', 'url'));
}
/**
* Adds the 'hostname' column to the {honeypot_user} table.
*/
function honeypot_update_7100() {
$schema = honeypot_schema();
$spec = $schema['honeypot_user']['fields']['hostname'];
$spec['initial'] = '';
db_add_field('honeypot_user', 'hostname', $spec);
}
/**
* Transfer previous honeypot trigger info from {flood} to {honeypot_user}.
*/
function honeypot_update_7101() {
// Move all 'honeypot' events, which are honeypot captures for anonymous
// users, to the {honeypot_user}-table, since the latter now supports
// tracking based on ip/hostname for anonymous users.
$query = db_select('flood', 'f')
->condition('event', 'honeypot');
$query->addExpression('0', 'uid');
$query->addField('f', 'identifier', 'hostname');
$query->addField('f', 'timestamp');
db_insert('honeypot_user')
->from($query)
->execute();
// Clean up the flood table by removing our events, since we are no longer
// relying on the flood mechanism to track anonymous honeypot captures.
flood_clear_event('honeypot');
}