You are here

function custom_breadcrumbs_update_6200 in Custom Breadcrumbs 6.2

Same name and namespace in other branches
  1. 7.2 custom_breadcrumbs.install \custom_breadcrumbs_update_6200()

Adds language support to breadcrumbs.

File

./custom_breadcrumbs.install, line 157
Install file for the custom_breadcrumbs module.

Code

function custom_breadcrumbs_update_6200() {
  $ret = array();
  db_add_field($ret, 'custom_breadcrumb', 'language', array(
    'type' => 'varchar',
    'length' => 12,
    'not null' => TRUE,
    'default' => '',
  ));
  return $ret;
}