TRUE, 'icon' => 'icon_node_form.png', 'title' => t('Node form languages'), 'description' => t('The language selection form.'), 'required context' => new ctools_context_required(t('Form'), 'node_form'), 'category' => t('Form'), ); function ctools_node_form_language_content_type_render($subtype, $conf, $panel_args, &$context) { $block = new stdClass(); $block->module = 'node_form'; $block->delta = 'language-options'; if (isset($context->form)) { if (!empty($context->form['language'])) { $block->content['language'] = $context->form['language']; unset($context->form['language']); } } else { $block->content = t('Node language form.'); } return $block; } function ctools_node_form_language_content_type_admin_title($subtype, $conf, $context) { return t('"@s" node form language field', array('@s' => $context->identifier)); } function ctools_node_form_language_content_type_edit_form($form, &$form_state) { // Provide a blank form so we have a place to have context setting. return $form; }