TRUE, 'icon' => 'icon_user_form.png', 'title' => t('User form username field'), 'description' => t('The user username form.'), 'required context' => new ctools_context_required(t('Form'), 'form'), 'category' => t('Form'), ); /** * Ctools plugin content type render for the username form field. */ function ctools_user_form_username_content_type_render($subtype, $conf, $panel_args, &$context) { $block = new stdClass(); $block->module = t('user-form'); $block->delta = 'title-options'; if (isset($context->form)) { if (!empty($context->form['account']['name'])) { $block->content['name'] = $context->form['account']['name']; unset($context->form['account']['name']); } } else { $block->content = t('User username form.'); } return $block; } /** * Ctools plugin admin title function for the username form field. */ function ctools_user_form_username_content_type_admin_title($subtype, $conf, $context) { return t('"@s" user form username field', array('@s' => $context->identifier)); } /** * Ctools plugin configuration edit form for the username form field. * * Provide a blank form so we have a place to have context setting. */ function ctools_user_form_username_content_type_edit_form($form, &$form_state) { return $form; }