You are here

function opigno_is_course in Opigno 7.0

1 call to opigno_is_course()
opigno_opigno_tools in ./opigno.module
Implements hook_opigno_tools()

File

./opigno.module, line 411
Contains all hook_implementations and module specific API.

Code

function opigno_is_course($node) {
  return in_array($node->type, array(
    'course',
  ));
}