system_update_7027

Versions
7
system_update_7027()

Enable field type modules.

Related topics

Code

modules/system/system.install, line 2349

<?php
function system_update_7027() {
  $module_list = array('text', 'number', 'list', 'options');
  db_delete('system')
    ->condition('type', 'module')
    ->condition('name', $module_list)
    ->execute();
  drupal_install_modules($module_list);
  module_enable($module_list);
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.