colorbox.views.inc 497 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @file
  4. * colorbox.views.inc
  5. */
  6. /**
  7. * Implementation of hook_views_data()
  8. */
  9. function colorbox_views_data() {
  10. $data['colorbox']['table']['group'] = t('Colorbox');
  11. $data['colorbox']['table']['join'] = array(
  12. '#global' => array(),
  13. );
  14. $data['colorbox']['colorbox'] = array(
  15. 'title' => t('Colorbox trigger'),
  16. 'help' => t('Provide custom text or link.'),
  17. 'field' => array(
  18. 'handler' => 'colorbox_handler_field_colorbox',
  19. ),
  20. );
  21. return $data;
  22. }