You are here

function tablefield_update_dependencies in TableField 7

Same name and namespace in other branches
  1. 7.3 tablefield.install \tablefield_update_dependencies()
  2. 7.2 tablefield.install \tablefield_update_dependencies()

Implements hook_update_dependencies().

File

./tablefield.install, line 39
Installation options for TableField

Code

function tablefield_update_dependencies() {

  // Ensure that format columns are only changed after Filter module has changed
  // the primary records.
  $dependencies['text'][7000] = array(
    'filter' => 7010,
  );
  return $dependencies;
}