function ctools_page_title_content_type_edit_form

File

plugins/content_types/page/page_title.inc, line 61

Code

function ctools_page_title_content_type_edit_form($form, &$form_state) {
    $conf = $form_state['conf'];
    $form['markup'] = array(
        '#title' => t('Title tag'),
        '#type' => 'select',
        '#options' => array(
            'none' => t('- No tag -'),
            'h1' => t('h1'),
            'h2' => t('h2'),
            'h3' => t('h3'),
            'h4' => t('h4'),
            'h5' => t('h5'),
            'h6' => t('h6'),
            'div' => t('div'),
        ),
        '#default_value' => empty($conf['markup']) ? 'h1' : $conf['markup'],
    );
    $form['id'] = array(
        '#title' => t('CSS id to use'),
        '#type' => 'textfield',
        '#default_value' => empty($conf['id']) ? '' : $conf['id'],
    );
    $form['class'] = array(
        '#title' => t('CSS class to use'),
        '#type' => 'textfield',
        '#default_value' => empty($conf['class']) ? '' : $conf['class'],
    );
    return $form;
}