You are here

function opigno_statistics_app_present_active_users_last_week_percentage in Opigno Statistics App 7

Present active users last week percentage

Output example: array( 'percentage' => 15 );

Return value

array

1 call to opigno_statistics_app_present_active_users_last_week_percentage()
opigno_statistics_app_dashboard_page in includes/dashboard/dashboard.pages.inc

File

includes/dashboard/presenters.inc, line 111

Code

function opigno_statistics_app_present_active_users_last_week_percentage() {
  return array(
    'percentage' => round(opigno_statistics_app_query_active_users_last_week_percentage() * 100),
  );
}