You are here

function flag_flag_link_types in Flag 5

Same name and namespace in other branches
  1. 6.2 flag.module \flag_flag_link_types()
  2. 6 flag.module \flag_flag_link_types()
  3. 7.2 flag.module \flag_flag_link_types()

Implementation of hook_flag_link_types().

File

./flag.module, line 203
The Flag module.

Code

function flag_flag_link_types() {
  return array(
    'toggle' => t('JavaScript toggle'),
    'normal' => t('Normal link'),
    'confirm' => t('Confirmation form'),
  );
}