You are here

function feedapi_node_views_views_arguments in FeedAPI 5

Implementation of hook_views_arguments().

File

feedapi_node_views/feedapi_node_views.module, line 133

Code

function feedapi_node_views_views_arguments() {
  $arguments = array(
    'feed_nid' => array(
      'name' => t('FeedAPI Item: Parent Feed'),
      'handler' => 'views_handler_arg_feed_nid',
      'help' => t('This argument will find all feed items for the specified feed node id.'),
    ),
  );
  return $arguments;
}