summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc
diff options
context:
space:
mode:
Diffstat (limited to 'sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc')
-rw-r--r--sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc43
1 files changed, 43 insertions, 0 deletions
diff --git a/sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc b/sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc
new file mode 100644
index 000000000..ca7550b25
--- /dev/null
+++ b/sites/all/modules/ctools/plugins/content_types/user_context/user_signature.inc
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * Plugins are described by creating a $plugin array which will be used
+ * by the system that includes this file.
+ */
+$plugin = array(
+ 'title' => t('User signature'),
+ 'icon' => 'icon_user.png',
+ 'description' => t('The signature of a user.'),
+ 'required context' => new ctools_context_required(t('User'), 'user'),
+ 'category' => t('User'),
+);
+
+function ctools_user_signature_content_type_render($subtype, $conf, $panel_args, $context) {
+ $account = isset($context->data) ? clone($context->data) : NULL;
+ $block = new stdClass();
+ $block->module = 'user-signature';
+
+ if ($account === FALSE || ($account->access == 0 && !user_access('administer users'))) {
+ return;
+ }
+
+ $element['user_signature'] = array(
+ '#theme' => 'user_signature',
+ '#signature' => check_markup($account->signature, $account->signature_format),
+ );
+
+ $block->content = $element;
+ return $block;
+}
+
+/**
+ * Display the administrative title for a panel pane in the drag & drop UI
+ */
+function ctools_user_signature_content_type_admin_title($subtype, $conf, $context) {
+ return t('"@s" user signature', array('@s' => $context->identifier));
+}
+
+function ctools_user_signature_content_type_edit_form($form, &$form_state) {
+ // provide a blank form so we have a place to have context setting.
+ return $form;
+}