add more columns for custom-column selection (customer view)
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -40,4 +40,16 @@ class Email
|
||||
]
|
||||
];
|
||||
}
|
||||
|
||||
public static function forwarderList(array $attributes)
|
||||
{
|
||||
$forwarders = explode(" ", $attributes['data']);
|
||||
if (($key = array_search($attributes['fields']['email_full'], $forwarders)) !== false) {
|
||||
unset($forwarders[$key]);
|
||||
}
|
||||
if (count($forwarders) > 0) {
|
||||
return implode("<br>", $forwarders);
|
||||
}
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user