You are here

function views_rdf_views_post_view in Views Datasource 5

post view to display the render icons

File

./views_rdf.module, line 143
Provides Views plugin for rendering node content as RDF.

Code

function views_rdf_views_post_view($view, $items, $output) {
  $links = '';
  foreach ($view->argument as $id => $argument) {
    if ($argument['type'] == 'rdf_foaf') {
      $links .= views_rdf_foaf_views_argument('post_view', $view, $argument['type'], '');
    }
    if ($argument['type'] == 'rdf_sioc') {
      $links .= views_rdf_sioc_views_argument('post_view', $view, $argument['type'], '');
    }
  }
  return $links;
}