commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / drupal / modules / views / civicrm / civicrm_handler_field.inc
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | This file is a part of CiviCRM. |
7 | |
8 | CiviCRM is free software; you can copy, modify, and distribute it |
9 | under the terms of the GNU Affero General Public License |
10 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
11 | |
12 | CiviCRM is distributed in the hope that it will be useful, but |
13 | WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
15 | See the GNU Affero General Public License for more details. |
16 | |
17 | You should have received a copy of the GNU Affero General Public |
18 | License and the CiviCRM Licensing Exception along |
19 | with this program; if not, contact CiviCRM LLC |
20 | at info[AT]civicrm[DOT]org. If you have questions about the |
21 | GNU Affero General Public License or the licensing of CiviCRM, |
22 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
23 +--------------------------------------------------------------------+
24 */
25
26 /**
27 * Field handler to provide simple renderer that allows linking to a user.
28 *
29 * @ingroup civicrm_field_handlers
30 */
31 class civicrm_handler_field extends views_handler_field {
32
33 /**
34 * Override init function to provide generic option to link to user.
35 */
36 function init(&$view, &$data) {
37 parent::init($view, $data);
38 }
39
40 /**
41 * Provide link to node option
42 */
43 function options_form(&$form, &$form_state) {
44 parent::options_form($form, $form_state);
45 $form['link_to_civicrm'] = array(
46 '#title' => t('Link this field to its user'),
47 '#type' => 'checkbox',
48 '#default_value' => isset($this->options['link_to_civicrm']) ? $this->options['link_to_civicrm'] : '',
49 );
50 }
51
52 function render_link($data, $values) {
53 $data = str_replace('\ 1', ', ', trim($data, '\ 1'));
54 if (!empty($this->options['link_to_civicrm']) && user_access('access CiviCRM') && $values->id) {
55 return civicrm_views_href($data,
56 'civicrm/contact/view',
57 "reset=1&cid={$values->id}"
58 );
59 }
60 else {
61 return $data;
62 }
63 }
64
65 function render($values) {
66 return $this->render_link(check_plain($values->{$this->field_alias}), $values);
67 }
68 }
69