You are here

function sendinblue_statistic_page in SendinBlue 7

Same name and namespace in other branches
  1. 7.2 includes/sendinblue_statstic.admin.inc \sendinblue_statistic_page()

Display Statistics page of module.

Return value

array Render array.

1 string reference to 'sendinblue_statistic_page'
sendinblue_menu in ./sendinblue.module
Implements hook_menu().

File

includes/sendinblue_statstic.admin.inc, line 13
Sendinblue module statistic admin settings.

Code

function sendinblue_statistic_page() {
  $page_html = '<div id="wrap" class="box-border-box container-fluid">';
  $page_html .= SendinblueManager::generateStatisticLogin() . '</div>';
  $output = array(
    'main_wrapper' => array(
      '#type' => 'markup',
      '#markup' => $page_html,
    ),
    '#attached' => array(
      'css' => array(
        drupal_get_path('module', 'sendinblue') . '/css/admin-setting.css',
      ),
    ),
  );
  return $output;
}