You are here

function panels_admin_term_list_options in Panels 6.2

Same name and namespace in other branches
  1. 5.2 content_types/term_list.inc \panels_admin_term_list_options()
3 calls to panels_admin_term_list_options()
panels_admin_edit_term_list in content_types/term_list.inc
Returns an edit form for the custom type.
panels_admin_title_term_list in content_types/term_list.inc
panels_content_term_list in content_types/term_list.inc

File

content_types/term_list.inc, line 86

Code

function panels_admin_term_list_options() {
  return array(
    'child' => t('Child terms'),
    'related' => t('Related terms'),
    'sibling' => t('Sibling terms'),
    'top' => t('Top level terms'),
    'synonyms' => t('Term synonyms'),
  );
}