TRUE, 'icon' => 'icon_node_form.png', 'title' => t('Node form menu settings'), 'description' => t('Menu settings on the Node form.'), 'required context' => new ctools_context_required(t('Form'), 'node_form'), 'category' => t('Form'), ); } function ctools_node_form_menu_content_type_render($subtype, $conf, $panel_args, &$context) { $block = new stdClass(); $block->module = t('node_form'); $block->title = t('Menu options'); $block->delta = 'menu-options'; if (isset($context->form)) { if (!empty($context->form['form_id']) && !empty($context->form['menu']['#access'])) { // remove the fieldset unset($context->form['menu']['#type']); $context->form['menu']['link_title']['#size'] /= 2; $block->content = drupal_render($context->form['menu']); } } else { $block->content = t('Menu options.'); } return $block; } function ctools_node_form_menu_content_type_admin_title($subtype, $conf, $context) { return t('"@s" node form menu settings', array('@s' => $context->identifier)); } function ctools_node_form_menu_content_type_edit_form(&$form, &$form_state) { // provide a blank form so we have a place to have context setting. }