user_contact.inc
File
-
plugins/
content_types/ contact/ user_contact.inc
View source
<?php
/**
* @file
*/
if (module_exists('contact')) {
/**
* Plugins are described by creating a $plugin array which will be used
* by the system that includes this file.
*/
$plugin = array(
'single' => TRUE,
'title' => t('User contact form'),
'icon' => 'icon_contact.png',
'description' => t('The site contact form that allows users to contact other users.'),
'category' => t('User'),
'required context' => new ctools_context_required(t('User'), 'user'),
);
}
/**
* Render the custom content type.
*/
function ctools_user_contact_content_type_render($subtype, $conf, $panel_args, $context) {
if (empty($context) || empty($context->data)) {
return;
}
if (!_contact_personal_tab_access($context->data)) {
return;
}
// Build the content type block.
$block = new stdClass();
$block->module = 'contact';
$block->delta = 'form';
$block->title = t('Contact @name', array(
'@name' => $context->data->name,
));
module_load_include('inc', 'contact', 'contact.pages');
$block->content = drupal_get_form('contact_personal_form', $context->data);
return $block;
}
/**
* Returns an edit form for custom type settings.
*/
function ctools_user_contact_content_type_edit_form($form, &$form_state) {
// Empty so that we can have title override.
return $form;
}
/**
* Submit handler for contact form.
*/
function ctools_user_contact_content_type_edit_form_submit(&$form, &$form_state) {
// Copy everything from our defaults.
}
/**
* Returns the administrative title for a type.
*/
function ctools_user_contact_content_type_admin_title($subtype, $conf, $context) {
return t('User contact form');
}
Functions
Title | Deprecated | Summary |
---|---|---|
ctools_user_contact_content_type_admin_title | Returns the administrative title for a type. | |
ctools_user_contact_content_type_edit_form | Returns an edit form for custom type settings. | |
ctools_user_contact_content_type_edit_form_submit | Submit handler for contact form. | |
ctools_user_contact_content_type_render | Render the custom content type. |