function opigno_forum_app_opigno_tool in Opigno Forum App 7
File
- ./
opigno_forum_app.module, line 45 - Module file. Defines module hooks.
Code
function opigno_forum_app_opigno_tool($node = NULL) {
$give = isset($node->nid) ? opigno_forum_app_get_course_forum_id($node->nid) : NULL;
return array(
'forum' => array(
'name' => t("Forum"),
'path' => isset($give) ? "forum/" . $give : '',
'description' => t("Forums allow teachers and students to communicate."),
),
);
}