Skip to content

Commit

Permalink
adding link
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncarlucci committed Feb 3, 2012
1 parent 87750b8 commit 901b047
Show file tree
Hide file tree
Showing 14 changed files with 4,141 additions and 0 deletions.
339 changes: 339 additions & 0 deletions drupal/sites/all/modules/contrib/link/LICENSE.txt

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions drupal/sites/all/modules/contrib/link/link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
div.link-field-column {
float: left;
width: 48%;
}

div.link-field-column .form-text {
width: 95%;
}
25 changes: 25 additions & 0 deletions drupal/sites/all/modules/contrib/link/link.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = Link
description = Defines simple link field types.
core = 7.x
package = Fields

files[] = link.module
files[] = link.install
; Tests
files[] = tests/link.test
files[] = tests/link.attribute.test
files[] = tests/link.crud.test
files[] = tests/link.crud_browser.test
files[] = tests/link.token.test
files[] = tests/link.validate.test

; Views Handlers
files[] = views/link_views_handler_argument_target.inc
files[] = views/link_views_handler_filter_protocol.inc

; Information added by drupal.org packaging script on 2011-10-23
version = "7.x-1.0"
core = "7.x"
project = "link"
datestamp = "1319392535"

118 changes: 118 additions & 0 deletions drupal/sites/all/modules/contrib/link/link.install
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
<?php

/**
* @file
* Install file for the link module.
*/

/**
* Upgrade notes:
* Things we need to make sure work when upgrading from Drupal 6 to Drupal 7:
*/

/**
* Implements hook_field_schema().
*/
function link_field_schema($field) {
return array(
'columns' => array(
'url' => array(
'type' => 'varchar',
'length' => 2048, // Maximum URLs length.
'not null' => FALSE,
'sortable' => TRUE
),
'title' => array(
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'sortable' => TRUE
),
'attributes' => array(
'type' => 'text',
'size' => 'medium',
'not null' => FALSE
),
),
);
}

/**
* Implements hook_update_last_removed().
*/
function link_update_last_removed() {
return 6001;
}

/**
* Handles moving settings data from field_config.data to field_config_instance.data.
*/
function link_update_7000() {

// For each field that is a link field, we need to copy the settings from the general field level down to the instance.
//$field_data = array();
$result = db_query("SELECT id, field_name, data FROM {field_config} WHERE module = 'link' AND type = 'link_field'");
foreach ($result as $field) {
$field_id = $field->id;
$name = $field->field_name;
$field_data = unserialize($field->data);

$instances = db_query("SELECT id, data FROM {field_config_instance} WHERE field_id = :field_id", array(':field_id' => $field_id));
foreach ($instances as $instance) {
// If this field has been updated already, we want to skip it.
$instance_data = unserialize($instance->data);
$update_instance = FALSE;
if (!isset($instance_data['settings']['title'])) {
foreach ($field_data['settings'] as $key => $value) {
if (!isset($instance_data['settings'][$key])) {
$instance_data['settings'][$key] = $value;
$update_instance = TRUE;
}
}
if ($update_instance) {
// update the database.
$num_updated = db_update('field_config_instance')
->fields(array('data' => serialize($instance_data)))
->condition('id', $instance->id)
->execute();
}
}
}
}

return t("Instance settings have been set with the data from the field settings.");
}

/**
* Renames all displays from foobar to link_foobar
*/
function link_update_7001() {
// for each field that is a link field, we need to update the display types:

$result = db_query("SELECT id, field_name, data FROM {field_config} WHERE module = 'link' AND type = 'link_field'");
foreach ($result as $field) {
$field_id = $field->id;
$name = $field->field_name;
$field_data = unserialize($field->data);

$instances = db_query("SELECT id, data FROM {field_config_instance} WHERE field_id = :field_id", array(':field_id' => $field_id));
foreach ($instances as $instance) {
// If this field has been updated already, we want to skip it.
$instance_data = unserialize($instance->data);
$update_instance = FALSE;
foreach ($instance_data['display'] as $display_name => $display_data) {
if ($display_data['type'] && (0 !== strpos($display_data['type'], 'link_'))) {
$instance_data['display'][$display_name]['type'] = 'link_'. $display_data['type'];
$update_instance = TRUE;
}
}
if ($update_instance) {
// update the database.
$num_updated = db_update('field_config_instance')
->fields(array('data' => serialize($instance_data)))
->condition('id', $instance->id)
->execute();
}
}
}
}
Loading

0 comments on commit 901b047

Please sign in to comment.