You are here

function votingapi_init in Voting API 6

Same name and namespace in other branches
  1. 5 votingapi.module \votingapi_init()

Implementation of hook_init. Loads the Views integration code.

File

./votingapi.module, line 33

Code

function votingapi_init() {
  if (module_exists('views')) {
    require_once drupal_get_path('module', 'votingapi') . '/votingapi_views.inc';
  }
}