|
|
Drupal example source code file (views_handler_field_profile_list.inc)
The views_handler_field_profile_list.inc Drupal example source code<?php // $Id: views_handler_field_profile_list.inc,v 1.4.2.1 2010/03/22 19:28:29 merlinofchaos Exp $ /** * Field handler display a profile list item. */ class views_handler_field_profile_list extends views_handler_field_prerender_list { /** * Break up our field into a proper list. */ function pre_render($values) { $this->items = array(); foreach ($values as $value) { $field = $value->{$this->field_alias}; $this->items[$field] = array(); foreach (split("[,\n\r]", $field) as $item) { if ($item != '' && $item !== NULL) { $this->items[$field][] = array('item' => $item); } } } } function render_item($count, $item) { return $item['item']; } function document_self_tokens(&$tokens) { $tokens['[' . $this->options['id'] . '-item' . ']'] = t('The text of the profile item.'); } function add_self_tokens(&$tokens, $item) { $tokens['[' . $this->options['id'] . '-item' . ']'] = $item['item']; } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_field_profile_list.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.