| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/modip/modules/views/modules/profile/ |
Upload File : |
<?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'];
}
}