Search code examples
drupaldrupal-7

Is there a way to add views bulk operations to a custom table in Drupal?


I created a custom table from a custom module using theme table; theme('table', array('header' => $table_header, 'rows' => $data)); the data that I'm showing can not be retrieved from views as i'm showing data from a 3rd-party services and this data is not saved in the database.

Is there a way to add VBO to my custom table?

Thanks.


Solution

  • no you cannot add vbo features that don't use the fields api of core drupal. the data from 3rd party services will needed to be imported into a field in order for BVO to work properly.