You are here

function recently_read_install in Recently Read 7.3

Same name and namespace in other branches
  1. 6 recently_read.install \recently_read_install()

Implements hook_install().

File

./recently_read.install, line 62
Recently read installation file. Displays a history of recently read nodes by currently logged in user.

Code

function recently_read_install() {
  $default = array(
    'node' => array(
      'enable' => 1,
      'max_record' => 10,
      'view_mode' => array(
        'full' => 'full',
      ),
    ),
  );
  variable_set('rr_config', $default);
}