You are here

function flag_lists_flag_link_type_info in Flag Lists 7.3

Implementation of hook_flag_link_type_info().

File

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

Code

function flag_lists_flag_link_type_info() {
  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.'),
      'options' => array(),
      'uses standard js' => TRUE,
      'uses standard css' => TRUE,
    ),
  );
}