summaryrefslogtreecommitdiff
path: root/sites/all/modules/ctools/plugins/content_types/user_context/user_picture.inc
blob: 0934c20a5290f7c842718d2eb34dd6881de9237f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php

/**
 * 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 picture'),
  'icon' => 'icon_user.png',
  'description' => t('The picture of a user.'),
  'required context' => new ctools_context_required(t('User'), 'user'),
  'category' => t('User'),
);

function ctools_user_picture_content_type_render($subtype, $conf, $panel_args, $context) {
  global $user;

  if (empty($context->data)) {
    return;
  }

  $account = clone $context->data;

  // Check if user has permissions to access the user
  if ($user->uid != $account->uid && (!user_access('access user profiles') && !user_access('administer users'))) {
    return;
  }

  $block = new stdClass();
  $block->module = 'user-profile';
  $block->title = check_plain($account->name);

  $element['user_picture'] = array(
    '#theme' => 'user_picture',
    '#account' => $account,
  );


  $block->content = $element;
  return $block;
}

/**
 * Display the administrative title for a panel pane in the drag & drop UI
 */
function ctools_user_picture_content_type_admin_title($subtype, $conf, $context) {
  return t('"@s" user picture', array('@s' => $context->identifier));
}

function ctools_user_picture_content_type_edit_form($form, &$form_state) {
  // provide a blank form so we have a place to have context setting.
  return $form;
}