array( 'label' => t('Link'), 'description' => t('Store a title, href, and attributes in the database to assemble a link.'), 'settings' => array( 'attributes' => _link_default_attributes(), 'url' => 0, 'title' => 'optional', 'title_value' => '', 'enable_tokens' => 1, 'display' => array( 'url_cutoff' => 80, ), ), 'instance_settings' => array( 'attributes' => _link_default_attributes(), 'url' => 0, 'title' => 'optional', 'title_value' => '', 'enable_tokens' => 1, 'display' => array( 'url_cutoff' => 80, ), ), 'default_widget' => 'link_field', 'default_formatter' => 'default', ), ); } /** * Implements hook_field_instance_settings_form(). */ function link_field_instance_settings_form($field, $instance) { $form = array( '#element_validate' => array('link_field_settings_form_validate'), ); $form['url'] = array( '#type' => 'checkbox', '#title' => t('Optional URL'), '#default_value' => isset($instance['settings']['url']) ? $instance['settings']['url'] : '', '#return_value' => 'optional', '#description' => t('If checked, the URL field is optional and submitting a title alone will be acceptable. If the URL is omitted, the title will be displayed as plain text.'), ); $title_options = array( 'optional' => t('Optional Title'), 'required' => t('Required Title'), 'value' => t('Static Title'), 'none' => t('No Title'), ); $form['title'] = array( '#type' => 'radios', '#title' => t('Link Title'), '#default_value' => isset($instance['settings']['title']) ? $instance['settings']['title'] : 'optional', '#options' => $title_options, '#description' => t('If the link title is optional or required, a field will be displayed to the end user. If the link title is static, the link will always use the same title. If token module is installed, the static title value may use any other node field as its value. Static and token-based titles may include most inline XHTML tags such as strong, em, img, span, etc.'), ); $form['title_value'] = array( '#type' => 'textfield', '#title' => t('Static title'), '#default_value' => isset($instance['settings']['title_value']) ? $instance['settings']['title_value'] : '', '#description' => t('This title will always be used if “Static Title” is selected above.'), ); if (module_exists('token')) { // Add token module replacements fields $form['tokens'] = array( '#type' => 'fieldset', '#collapsible' => TRUE, '#collapsed' => TRUE, '#title' => t('Placeholder tokens'), '#description' => t("The following placeholder tokens can be used in both paths and titles. When used in a path or title, they will be replaced with the appropriate values."), ); $token_type = array( 'theme' => 'token_tree', 'token_types' => array($instance['entity_type']), 'global_types' => TRUE, 'click_insert' => TRUE, 'recursion_limit' => 2, ); $form['tokens']['help'] = array( '#type' => 'markup', '#markup' => theme('token_tree', $token_type), ); $form['enable_tokens'] = array( '#type' => 'checkbox', '#title' => t('Allow user-entered tokens'), '#default_value' => isset($instance['settings']['enable_tokens']) ? $instance['settings']['enable_tokens'] : 1, '#description' => t('Checking will allow users to enter tokens in URLs and Titles on the node edit form. This does not affect the field settings on this page.'), ); } $form['display'] = array( '#tree' => TRUE, ); $form['display']['url_cutoff'] = array( '#type' => 'textfield', '#title' => t('URL Display Cutoff'), '#default_value' => isset($instance['settings']['display']['url_cutoff']) ? $instance['settings']['display']['url_cutoff'] : '80', '#description' => t('If the user does not include a title for this link, the URL will be used as the title. When should the link title be trimmed and finished with an elipsis (…)? Leave blank for no limit.'), '#maxlength' => 3, '#size' => 3, ); $target_options = array( LINK_TARGET_DEFAULT => t('Default (no target attribute)'), LINK_TARGET_TOP => t('Open link in window root'), LINK_TARGET_NEW_WINDOW => t('Open link in new window'), LINK_TARGET_USER => t('Allow the user to choose'), ); $form['attributes'] = array( '#tree' => TRUE, ); $form['attributes']['target'] = array( '#type' => 'radios', '#title' => t('Link Target'), '#default_value' => empty($instance['settings']['attributes']['target']) ? LINK_TARGET_DEFAULT : $instance['settings']['attributes']['target'], '#options' => $target_options, ); $form['attributes']['rel'] = array( '#type' => 'textfield', '#title' => t('Rel Attribute'), '#description' => t('When output, this link will have this rel attribute. The most common usage is rel="nofollow" which prevents some search engines from spidering entered links.'), '#default_value' => empty($instance['settings']['attributes']['rel']) ? '' : $instance['settings']['attributes']['rel'], '#field_prefix' => 'rel = "', '#field_suffix' => '"', '#size' => 20, ); $form['attributes']['class'] = array( '#type' => 'textfield', '#title' => t('Additional CSS Class'), '#description' => t('When output, this link will have have this class attribute. Multiple classes should be separated by spaces.'), '#default_value' => empty($instance['settings']['attributes']['class']) ? '' : $instance['settings']['attributes']['class'], ); return $form; } /** * Validate the field settings form. */ function link_field_settings_form_validate($element, &$form_state, $complete_form) { if ($form_state['values']['instance']['settings']['title'] === 'value' && empty($form_state['values']['instance']['settings']['title_value'])) { form_set_error('title_value', t('A default title must be provided if the title is a static value.')); } } /** * Implement hook_field_is_empty(). */ function link_field_is_empty($item, $field) { return empty($item['title']) && empty($item['url']); } /** * Implements hook_field_load(). */ function link_field_load($entity_type, $entities, $field, $instances, $langcode, &$items, $age) { foreach ($entities as $id => $entity) { foreach ($items[$id] as $delta => $item) { $items[$id][$delta]['attributes'] = _link_load($field, $item, $instances[$id]); } } } /** * Implements hook_field_validate(). */ function link_field_validate($entity_type, $entity, $field, $instance, $langcode, $items, &$errors) { $optional_field_found = FALSE; foreach ($items as $delta => $value) { _link_validate($items[$delta], $delta, $field, $entity, $instance, $optional_field_found); } } /** * Implements hook_field_presave(). */ function link_field_presave($entity_type, $entity, $field, $instance, $langcode, &$items) { foreach ($items as $delta => $value) { _link_process($items[$delta], $delta, $field, $entity); } } /** * Implements hook_field_prepare_view(). */ function link_field_prepare_view($entity_type, $entities, $field, $instances, $langcode, &$items) { foreach ($items as $entity_id => $entity_items) { foreach ($entity_items as $delta => $value) { _link_sanitize($items[$entity_id][$delta], $delta, $field, $instances[$entity_id], $entities[$entity_id]); } } } /** * Implements hook_field_widget_info(). */ function link_field_widget_info() { return array( 'link_field' => array( 'label' => 'Link', 'field types' => array('link_field'), 'multiple values' => FIELD_BEHAVIOR_DEFAULT, ), ); } /** * Implements hook_field_widget_form(). */ function link_field_widget_form(&$form, &$form_state, $field, $instance, $langcode, $items, $delta, $element) { $element += array( '#type' => $instance['widget']['type'], '#default_value' => isset($items[$delta]) ? $items[$delta] : '', ); return $element; } /** * Unpacks the item attributes for use. */ function _link_load($field, $item, $instance) { /*return $item['attributes'] = isset($item['attributes']) ? unserialize($item['attributes']) : $instance['settings']['attributes'];*/ if (isset($item['attributes'])) { return unserialize($item['attributes']); } else if (isset($instance['settings']['attributes'])) { return $instance['settings']['attributes']; } else { return $field['settings']['attributes']; } } /** * Prepares the item attributes and url for storage. */ function _link_process(&$item, $delta = 0, $field, $entity) { // Trim whitespace from URL. $item['url'] = trim($item['url']); // if no attributes are set then make sure $item['attributes'] is an empty array - this lets $field['attributes'] override it. if (empty($item['attributes'])) { $item['attributes'] = array(); } // Serialize the attributes array. $item['attributes'] = serialize($item['attributes']); // Don't save an invalid default value (e.g. 'http://'). if ((isset($field['widget']['default_value'][$delta]['url']) && $item['url'] == $field['widget']['default_value'][$delta]['url']) && is_object($node)) { if (!link_validate_url($item['url'])) { unset($item['url']); } } } /** * Validates that the link field has been entered properly. */ function _link_validate(&$item, $delta, $field, $node, $instance, &$optional_field_found) { if ($item['url'] && !(isset($instance['default_value'][$delta]['url']) && $item['url'] === $instance['default_value'][$delta]['url'] && !$instance['required'])) { // Validate the link. if (link_validate_url(trim($item['url'])) == FALSE) { form_set_error($field['field_name'] .']['. $delta .'][url', t('Not a valid URL.')); } // Require a title for the link if necessary. if ($instance['settings']['title'] == 'required' && strlen(trim($item['title'])) == 0) { form_set_error($field['field_name'] .']['. $delta .'][title', t('Titles are required for all links.')); } } // Require a link if we have a title. if ($instance['settings']['url'] !== 'optional' && strlen(isset($item['title']) ? $item['title'] : NULL) > 0 && strlen(trim($item['url'])) == 0) { form_set_error($field['field_name'] .']['. $delta .'][url', t('You cannot enter a title without a link url.')); } // In a totally bizzaro case, where URLs and titles are optional but the field is required, ensure there is at least one link. if ($instance['settings']['url'] === 'optional' && $instance['settings']['title'] === 'optional' && (strlen(trim($item['url'])) !== 0 || strlen(trim($item['title'])) !== 0)) { $optional_field_found = TRUE; } // Require entire field if ($instance['settings']['url'] === 'optional' && $instance['settings']['title'] === 'optional' && $instance['required'] == 1 && !$optional_field_found && isset($instance['id'])) { form_set_error($instance['field_name'] .'][0][title', t('At least one title or URL must be entered.')); } } /** * Cleanup user-entered values for a link field according to field settings. * * @param $item * A single link item, usually containing url, title, and attributes. * @param $delta * The delta value if this field is one of multiple fields. * @param $field * The CCK field definition. * @param $node * The node containing this link. */ function _link_sanitize(&$item, $delta, &$field, $instance, &$node) { // Don't try to process empty links. if (empty($item['url']) && empty($item['title'])) { return; } // Replace URL tokens. if ($instance['settings']['enable_tokens']) { global $user; // Load the node if necessary for nodes in views. $token_node = isset($node->nid) ? node_load($node->nid) : $node; $item['url'] = token_replace($item['url'], array('node' => $token_node)); } $type = link_validate_url($item['url']); $url = link_cleanup_url($item['url']); // Separate out the anchor if any. if (strpos($url, '#') !== FALSE) { $item['fragment'] = substr($url, strpos($url, '#') + 1); $url = substr($url, 0, strpos($url, '#')); } // Separate out the query string if any. if (strpos($url, '?') !== FALSE) { $query = substr($url, strpos($url, '?') + 1); parse_str($query, $query_array); $item['query'] = $query_array; $url = substr($url, 0, strpos($url, '?')); } // Create a shortened URL for display. $display_url = $type == LINK_EMAIL ? str_replace('mailto:', '', $url) : url($url, array('query' => isset($item['query']) ? $item['query'] : NULL, 'fragment' => isset($item['fragment']) ? $item['fragment'] : NULL, 'absolute' => TRUE)); if ($instance['settings']['display']['url_cutoff'] && strlen($display_url) > $instance['settings']['display']['url_cutoff']) { $display_url = substr($display_url, 0, $instance['settings']['display']['url_cutoff']) ."..."; } $item['display_url'] = $display_url; // Use the title defined at the instance level. if ($instance['settings']['title'] == 'value' && strlen(trim($instance['settings']['title_value']))) { $title = $instance['settings']['title_value']; } // Use the title defined by the user at the widget level. else if (isset($item['title'])) { $title = $item['title']; } else { $title = ''; } // Replace tokens. if ($title && ($instance['settings']['title'] == 'value' || $instance['settings']['enable_tokens'])) { // Load the node if necessary for nodes in views. $token_node = isset($node->nid) ? node_load($node->nid) : $node; $title = filter_xss(token_replace($title, array('node' => $token_node)), array('b', 'br', 'code', 'em', 'i', 'img', 'span', 'strong', 'sub', 'sup', 'tt', 'u')); $item['html'] = TRUE; } $item['title'] = empty($title) ? $item['display_url'] : $title; if (!isset($item['attributes'])) { $item['attributes'] = array(); } // Unserialize attributtes array if it has not been unserialized yet. if (!is_array($item['attributes'])) { $item['attributes'] = (array)unserialize($item['attributes']); } // Add default attributes. if (!is_array($instance['settings']['attributes'])){ $instance['settings']['attributes'] = _link_default_attributes(); } else { $instance['settings']['attributes'] += _link_default_attributes(); } // Merge item attributes with attributes defined at the field level. $item['attributes'] += $instance['settings']['attributes']; // If user is not allowed to choose target attribute, use default defined at // field level. if ($instance['settings']['attributes']['target'] != LINK_TARGET_USER) { $item['attributes']['target'] = $instance['settings']['attributes']['target']; } // Remove the target attribute if the default (no target) is selected. if (empty($item['attributes']) || $item['attributes']['target'] == LINK_TARGET_DEFAULT) { unset($item['attributes']['target']); } // Remove the rel=nofollow for internal links. if ($type != LINK_EXTERNAL && strpos($item['attributes']['rel'], 'nofollow') !== FALSE) { $item['attributes']['rel'] = str_replace('nofollow', '', $item['attributes']); } // Remove empty attributes. $item['attributes'] = array_filter($item['attributes']); // Sets title to trimmed url if one exists // @TODO: Do we need this? It seems not. /*if(!empty($item['display_url']) && empty($item['title'])) { $item['title'] = $item['display_url']; } elseif(!isset($item['title'])) { $item['title'] = $item['url']; }*/ } /** * Implements hook_theme(). */ function link_theme() { return array( /*'link_field_settings' => array( 'variables' => array('element' => NULL), ),*/ 'link_formatter_default' => array( 'variables' => array('element' => NULL), ), 'link_formatter_plain' => array( 'variables' => array('element' => NULL), ), 'link_formatter_url' => array( 'variables' => array('element' => NULL), ), 'link_formatter_short' => array( 'variables' => array('element' => NULL), ), 'link_formatter_label' => array( 'variables' => array('element' => NULL), ), 'link_formatter_separate' => array( 'variables' => array('element' => NULL), ), 'link_field' => array( 'render element' => 'element', ), ); } /** * FAPI theme for an individual text elements. */ function theme_link_field($vars) { drupal_add_css(drupal_get_path('module', 'link') .'/link.css'); $element = $vars['element']; // Prefix single value link fields with the name of the field. if (empty($element['#field']['multiple'])) { if (isset($element['url']) && !isset($element['title'])) { unset($element['url']['#title']); } } $output = ''; $output .= '