module_missing_message_fixer.admin.inc in Module Missing Message Fixer 7
The Missing Module Message Fixer Admin Settings file.
File
includes/module_missing_message_fixer.admin.incView source
<?php
/**
* @file
* The Missing Module Message Fixer Admin Settings file.
*/
/**
* Missing Module Message Fixer Form.
*/
function module_missing_message_fixer_form() {
$form = array();
// Fancy title string.
$title = t('This list comes from the system table and is checked against the drupal_get_filename() function. See <a href="@link" target="_blank">this issue</a> for more information.', array(
'@link' => 'https://www.drupal.org/node/2487215',
));
// Title.
$form['title'] = array(
'#type' => 'item',
'#markup' => '<h2><center>' . $title . '</h2></center>',
);
// Fancy submit buttons to win this.
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Remove These Errors!'),
'#submit' => array(
'module_missing_message_fixer_form_submit',
),
'#prefix' => '<center>',
'#suffix' => '</center>',
);
// Set the tables select to make this more granular.
$form['table'] = array(
'#type' => 'tableselect',
'#header' => _module_missing_message_fixer_get_table_header(),
'#options' => _module_missing_message_fixer_get_table_rows(),
'#empty' => t('No Missing Modules Found!!!'),
);
return $form;
}
/**
* Submit handler for Missing Module Message Fixer Form.
*
* @param array $form
* @param array $form_state
*/
function module_missing_message_fixer_form_submit(array $form, array &$form_state) {
$modules = array();
// Go through each record and add it to the array to win.
foreach ($form_state['values']['table'] as $module) {
// do not use '0' (not selected)
if ($module) {
$modules[] = $module;
}
}
// Delete if there is no modules.
if (count($modules) > 0) {
db_delete('system')
->condition('filename', $modules, 'IN')
->execute();
}
}
Functions
Name | Description |
---|---|
module_missing_message_fixer_form | Missing Module Message Fixer Form. |
module_missing_message_fixer_form_submit | Submit handler for Missing Module Message Fixer Form. |