123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406 |
- <?php
- /**
- * @file
- * Provide views data and handlers for aggregator.module.
- *
- * @ingroup views_module_handlers
- */
- /**
- * Implements hook_views_data().
- */
- function aggregator_views_data() {
- // ----------------------------------------------------------------------
- // Main Aggregator Item base table
- // Define the base group of this table. Fields that don't
- // have a group defined will go into this field by default.
- $data['aggregator_item']['table']['group'] = t('Aggregator');
- // Advertise this table as a possible base table
- $data['aggregator_item']['table']['base'] = array(
- 'field' => 'iid',
- 'title' => t('Aggregator item'),
- 'help' => t("Aggregator items are imported from external RSS and Atom news feeds."),
- );
- // ----------------------------------------------------------------
- // Fields
- // item id.
- $data['aggregator_item']['iid'] = array(
- 'title' => t('Feed Item ID'),
- 'help' => t('The unique ID of the aggregator item.'),
- 'field' => array(
- 'handler' => 'views_handler_field_numeric',
- 'click sortable' => TRUE,
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_numeric',
- 'numeric' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_numeric',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- // iid
- $data['aggregator_item']['iid'] = array(
- 'title' => t('Item ID'),
- 'help' => t('The unique ID of the aggregator item.'), // The help that appears on the UI,
- // Information for displaying the iid
- 'field' => array(
- 'handler' => 'views_handler_field_numeric',
- 'click sortable' => TRUE,
- ),
- // Information for accepting a iid as an argument
- 'argument' => array(
- 'handler' => 'views_handler_argument_aggregator_iid',
- 'name field' => 'title', // the field to display in the summary.
- 'numeric' => TRUE,
- ),
- // Information for accepting a nid as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_numeric',
- ),
- // Information for sorting on a nid.
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- // title
- $data['aggregator_item']['title'] = array(
- 'title' => t('Title'), // The item it appears as on the UI,
- 'help' => t('The title of the aggregator item.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_aggregator_title_link',
- 'extra' => array('link'),
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- // link
- $data['aggregator_item']['link'] = array(
- 'title' => t('Link'), // The item it appears as on the UI,
- 'help' => t('The link to the original source URL of the item.'),
- 'field' => array(
- 'handler' => 'views_handler_field_url',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- // author
- $data['aggregator_item']['author'] = array(
- 'title' => t('Author'), // The item it appears as on the UI,
- 'help' => t('The author of the original imported item.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_aggregator_xss',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_string',
- ),
- );
- // guid
- $data['aggregator_item']['guid'] = array(
- 'title' => t('GUID'), // The item it appears as on the UI,
- 'help' => t('The guid of the original imported item.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_xss',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_string',
- ),
- );
- // feed body
- $data['aggregator_item']['description'] = array(
- 'title' => t('Body'), // The item it appears as on the UI,
- 'help' => t('The actual content of the imported item.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_aggregator_xss',
- 'click sortable' => FALSE,
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- // item timestamp
- $data['aggregator_item']['timestamp'] = array(
- 'title' => t('Timestamp'), // The item it appears as on the UI,
- 'help' => t('The date the original feed item was posted. (With some feeds, this will be the date it was imported.)'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_date',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort_date',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_date',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_date',
- ),
- );
- // ----------------------------------------------------------------------
- // Aggregator feed table
- $data['aggregator_feed']['table']['group'] = t('Aggregator feed');
- // Explain how this table joins to others.
- $data['aggregator_feed']['table']['join'] = array(
- 'aggregator_item' => array(
- 'left_field' => 'fid',
- 'field' => 'fid',
- ),
- );
- // fid
- $data['aggregator_feed']['fid'] = array(
- 'title' => t('Feed ID'),
- 'help' => t('The unique ID of the aggregator feed.'), // The help that appears on the UI,
- // Information for displaying the fid
- 'field' => array(
- 'handler' => 'views_handler_field_numeric',
- 'click sortable' => TRUE,
- ),
- // Information for accepting a fid as an argument
- 'argument' => array(
- 'handler' => 'views_handler_argument_aggregator_fid',
- 'name field' => 'title', // the field to display in the summary.
- 'numeric' => TRUE,
- ),
- // Information for accepting a nid as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_numeric',
- ),
- // Information for sorting on a fid.
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- // title
- $data['aggregator_feed']['title'] = array(
- 'title' => t('Title'), // The item it appears as on the UI,
- 'help' => t('The title of the aggregator feed.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_aggregator_title_link',
- 'extra' => array('link'),
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_string',
- ),
- );
- // link
- $data['aggregator_feed']['link'] = array(
- 'title' => t('Link'), // The item it appears as on the UI,
- 'help' => t('The link to the source URL of the feed.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_url',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- // feed last updated
- $data['aggregator_feed']['checked'] = array(
- 'title' => t('Last checked'), // The item it appears as on the UI,
- 'help' => t('The date the feed was last checked for new content.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_date',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort_date',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_date',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_date',
- ),
- );
- // feed description
- $data['aggregator_feed']['description'] = array(
- 'title' => t('Description'), // The item it appears as on the UI,
- 'help' => t('The description of the aggregator feed.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_xss',
- 'click sortable' => FALSE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- // feed last updated
- $data['aggregator_feed']['modified'] = array(
- 'title' => t('Last modified'), // The item it appears as on the UI,
- 'help' => t('The date of the most recent new content on the feed.'),
- // Information for displaying a title as a field
- 'field' => array(
- 'handler' => 'views_handler_field_date',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort_date',
- ),
- // Information for accepting a title as a filter
- 'filter' => array(
- 'handler' => 'views_handler_filter_date',
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_date',
- ),
- );
- // ----------------------------------------------------------------------
- // Aggregator category feed table
- $data['aggregator_category_feed']['table']['join'] = array(
- 'aggregator_item' => array(
- 'left_field' => 'fid',
- 'field' => 'fid',
- ),
- );
- // ----------------------------------------------------------------------
- // Aggregator category table
- $data['aggregator_category']['table']['group'] = t('Aggregator category');
- $data['aggregator_category']['table']['join'] = array(
- 'aggregator_item' => array(
- 'left_table' => 'aggregator_category_feed',
- 'left_field' => 'cid',
- 'field' => 'cid',
- ),
- );
- // cid
- $data['aggregator_category']['cid'] = array(
- 'title' => t('Category ID'),
- 'help' => t('The unique ID of the aggregator category.'),
- 'field' => array(
- 'handler' => 'views_handler_field_numeric',
- 'click sortable' => TRUE,
- ),
- 'argument' => array(
- 'handler' => 'views_handler_argument_aggregator_category_cid',
- 'name field' => 'title',
- 'numeric' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_aggregator_category_cid',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- // title
- $data['aggregator_category']['title'] = array(
- 'title' => t('Category'),
- 'help' => t('The title of the aggregator category.'),
- 'field' => array(
- 'handler' => 'views_handler_field_aggregator_category',
- 'click sortable' => TRUE,
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_string',
- ),
- );
- return $data;
- }
- /**
- * Implements hook_views_plugins().
- */
- function aggregator_views_plugins() {
- return array(
- 'module' => 'views', // This just tells our themes are elsewhere.
- 'row' => array(
- 'aggregator_rss' => array(
- 'title' => t('Aggregator item'),
- 'help' => t('Display the aggregator item using the data from the original source.'),
- 'handler' => 'views_plugin_row_aggregator_rss',
- 'path' => drupal_get_path('module', 'views') . '/modules/node', // not necessary for most modules
- 'theme' => 'views_view_row_rss',
- 'base' => array('aggregator_item'), // only works with 'node' as base.
- 'uses options' => TRUE,
- 'type' => 'feed',
- 'help topic' => 'style-aggregator-rss',
- ),
- ),
- );
- }
|