You are here

function opigno_tincan_api_tincanphp_is_installed in Opigno TinCan API 8

Same name and namespace in other branches
  1. 3.x opigno_tincan_api.module \opigno_tincan_api_tincanphp_is_installed()

Check if the library TinCanPHP is installed.

8 calls to opigno_tincan_api_tincanphp_is_installed()
OpignoTincanLiveMeeting::tincanLiveMeeting in modules/opigno_tincan_live_meeting/src/EventSubscriber/OpignoTincanLiveMeeting.php
Called whenever the tincanLiveMeeting event is dispatched.
opigno_tincan_activities_opigno_answer_insert in modules/opigno_tincan_activities/opigno_tincan_activities.module
Implements hook_ENTITY_TYPE_insert().
opigno_tincan_badges_user_module_status_presave in modules/opigno_tincan_badges/opigno_tincan_badges.module
Implements hook_ENTITY_TYPE_presave().
opigno_tincan_courses_user_module_status_presave in modules/opigno_tincan_courses/opigno_tincan_courses.module
Implements hook_ENTITY_TYPE_presave().
opigno_tincan_ilt_opigno_ilt_result_presave in modules/opigno_tincan_ilt/opigno_tincan_ilt.module
Implements hook_ENTITY_TYPE_presave().

... See full list

File

./opigno_tincan_api.module, line 59
Contains opigno_tincan_api.module.

Code

function opigno_tincan_api_tincanphp_is_installed() {
  return class_exists('TinCan\\Statement');
}