Maybe your right. I just believe that the code really do look like it is possible. In the controller.users.php on line 327 I see the following line:
Code:
$pluginAdditions = $_PLUGINS->trigger( 'onAfterBackendUsersList', array( 1, &$rows, &$pageNav, &$search, &$lists, $option, $select_tag_attribs ) );
$pluginColumns = array();
foreach ( $pluginAdditions as $addition ) {
if ( is_array( $addition ) ) {
$pluginColumns = array_merge( $pluginColumns, $addition );
}
}
The pluginColumns is later inserted in the view.users.php (line 480);
Code:
foreach ( $pluginColumns as $name => $content ) {
?>
<td><?php echo $content[$row->id]; ?></td>
<?php
As I see it the only thing I need is a return statement, but even that I can't seem to get to work...