You are here

function linkimagefield_update_2 in Link Image Field 5

Schema change to enable alt and title tags.

File

./linkimagefield.install, line 45
linkimagefield install file

Code

function linkimagefield_update_2() {
  $ret = array();
  include_once drupal_get_path('module', 'content') . '/content.module';
  include_once drupal_get_path('module', 'content') . '/content_admin.inc';
  $fields = content_fields();
  foreach ($fields as $field) {
    switch ($field['type']) {
      case 'linkimage':
        $oldcolumns = array(
          'fid' => array(
            'type' => 'int',
            'not null' => TRUE,
            'default' => '0',
          ),
        );
        $newcolumns = array(
          'fid' => array(
            'type' => 'int',
            'not null' => TRUE,
            'default' => '0',
          ),
          'title' => array(
            'type' => 'varchar',
            'length' => 255,
            'not null' => TRUE,
            'default' => "''",
            'sortable' => TRUE,
          ),
          'alt' => array(
            'type' => 'varchar',
            'length' => 255,
            'not null' => TRUE,
            'default' => "''",
            'sortable' => TRUE,
          ),
          'url' => array(
            'type' => 'varchar',
            'length' => 255,
            'not null' => TRUE,
            'default' => "''",
            'sortable' => TRUE,
          ),
        );
        content_alter_db_field($field, $oldcolumns, $field, $newcolumns);
        break;
    }
    drupal_set_message('altered: <br /><pre>' . print_r($field, TRUE) . '</pre>');
  }
  db_query('DELETE FROM {cache}');
  return $ret;
}