You are here

function opigno_og_course_progress_block in Opigno 7.0

1 call to opigno_og_course_progress_block()
opigno_opigno_widget_view in ./opigno.module
Implements hook_opigno_widget_view()

File

includes/opigno.block.inc, line 80
Contains all block definitions

Code

function opigno_og_course_progress_block($group) {

  // @todo get quiz progress, only for students
  return array(
    'subject' => t("Progress"),
    'content' => theme('progress_bar', array(
      'percent' => 50,
      'message' => t("Hi"),
    )),
  );
}