Skip to content

Instantly share code, notes, and snippets.

@malcomio
malcomio / gist:6386306
Last active December 21, 2015 23:59
Drupal 7 View to display top artist images from a last.fm audioscrobbler feed. Depends on the following modules: Views Views XML Backend
$view = new view();
$view->name = 'last_fm_artists';
$view->description = '';
$view->tag = 'default';
$view->base_table = 'xml';
$view->human_name = 'Last.fm artists';
$view->core = 7;
$view->api_version = '3.0';
$view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */