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

manuel.adan created an issue. See original summary.

leewillis77’s picture

Great suggestion. I'll roll this into the next release.

  • leewillis77 authored 6eb532e on 8.x-1.x
    Issue #2818459 by manuel.adan, leewillis77: Include data field in views
    
leewillis77’s picture

Status: Active » Fixed

Now available in 8.x-1.1. Thanks for the contribution!

leewillis77’s picture

Status: Fixed » Closed (fixed)