You are here

function recently_read_views_plugins in Recently Read 7.2

File

./recently_read.module, line 329
Recently read module file. Displays a history of recently read nodes by currently logged in user.

Code

function recently_read_views_plugins() {
  $plugins['argument default']['rr'] = array(
    'title' => t('Recently Read'),
    'handler' => 'views_plugin_argument_rr',
    'module' => 'recently_read',
    'file' => 'views_plugin_argument_rr.inc',
    'parent' => 'fixed',
    'name' => 'rr',
  );
  return $plugins;
}