Simply module that works like a charm ;)
Would be nice add the serialized data information as a views field. If it helps, that's my custom module hook_views_data_alter for that:
$data['login_tracker']['data'] = array(
'title' => t('Login data'),
'help' => t('Login record information.'),
'field' => array(
'id' => 'serialized',
'click sortable' => FALSE,
),
'sort' => array(
'id' => 'standard',
),
'filter' => array(
'handler' => 'serialized',
),
);
Comments
Comment #2
leewillis77 commentedGreat suggestion. I'll roll this into the next release.
Comment #4
leewillis77 commentedNow available in 8.x-1.1. Thanks for the contribution!
Comment #5
leewillis77 commented