function ctools_page_site_name_content_type_edit_form
Settings form for the Site Name pane.
File
-
plugins/
content_types/ page/ page_site_name.inc, line 28
Code
function ctools_page_site_name_content_type_edit_form($form, &$form_state) {
$conf = $form_state['conf'];
$form['linked'] = array(
'#title' => t('Linked'),
'#description' => t('Link the site name to the home page.'),
'#type' => 'checkbox',
'#default_value' => isset($conf['linked']) ? $conf['linked'] : FALSE,
);
return $form;
}