function ctools_admin_term_list_options

3 calls to ctools_admin_term_list_options()
ctools_term_list_content_type_admin_title in plugins/content_types/term_context/term_list.inc
ctools_term_list_content_type_edit_form in plugins/content_types/term_context/term_list.inc
Returns an edit form for the custom type.
ctools_term_list_content_type_render in plugins/content_types/term_context/term_list.inc

File

plugins/content_types/term_context/term_list.inc, line 107

Code

function ctools_admin_term_list_options() {
    return array(
        'child' => t('Child terms'),
        'related' => t('Related terms (does not work in D7)'),
        'sibling' => t('Sibling terms'),
        'top' => t('Top level terms'),
        'synonyms' => t('Term synonyms (does not work in D7)'),
        'parent' => t('Parent term(s)'),
    );
}