You are here

function _advanced_link_default_attributes in Advanced Link 6

Returns array of default attributes for advanced link.

1 call to _advanced_link_default_attributes()
advanced_link_process in ./advanced_link.module
Process the advanced_link type element before displaying the field.

File

./advanced_link.module, line 376
Defines simple advanced_link widget.

Code

function _advanced_link_default_attributes() {
  return array(
    'title' => '',
    'target' => ADVANCED_LINK_TARGET_DEFAULT,
    'class' => '',
    'rel' => '',
  );
}