You are here

function flag_lists_flag_link_types in Flag Lists 7

Same name and namespace in other branches
  1. 6 flag_lists.module \flag_lists_flag_link_types()

Implementation of hook_flag_link_types().

File

./flag_lists.module, line 1216
The Flag Lists module.

Code

function flag_lists_flag_link_types() {
  return array(
    'fl_template' => array(
      'title' => t('Flag Lists toggle'),
      'description' => t('If you are creating a Flag lists template flag, you must select this link type.'),
    ),
  );
}