Project

General

Profile

« Previous | Next » 

Revision 89aa0117

Added by Andreas Kohlbecker almost 2 years ago

ref #9659 field 'glue' removed from admin pages

View differences:

modules/cdm_dataportal/ext_links/ext_links.install
31 31
        'not null' => TRUE,
32 32
        'description' => 'The link url template',
33 33
      ],
34
      'glue' => [
35
        'type' => 'varchar',
36
        'length' => 10,
37
        'not null' => TRUE,
38
        'description' => 'The string to concatenate name parts in the URL query string',
39
      ],
40 34
      'category' => [
41 35
        'type' => 'varchar',
42 36
        'length' => 255,
43
        'not null' => TRUE,
44 37
        'description' => 'The link category',
45 38
      ],
46 39
      'weight' => [
......
162 155
  $ext_link_id = $ext_link->id;
163 156
  $ext_link->status = variable_get("ext_links_${ext_link_id}_check", $ext_link->status);
164 157
  $ext_link->link =  variable_get("ext_links_${ext_link_id}_link", $ext_link->link);
165
  $ext_link->glue = variable_get("ext_links_${ext_link_id}_concat",   $ext_link->glue);
166 158
  $ext_link->title = variable_get("ext_links_${ext_link_id}_text", $ext_link->title);
167 159
  return $ext_link;
168 160
}

Also available in: Unified diff