You are here

function sendinblue_theme in SendinBlue 8.2

Same name and namespace in other branches
  1. 8 sendinblue.module \sendinblue_theme()

Register a module (or theme's) theme implementations.

See also

hook_theme_registry_alter()

File

./sendinblue.module, line 26
The entry point of Sendinblue module.

Code

function sendinblue_theme($existing, $type, $theme, $path) {
  return [
    'generateHomeLogout' => [
      'variables' => [
        'formulaire_api_key' => NULL,
      ],
    ],
    'generateHomeLogin' => [
      'variables' => [
        'api_version' => NULL,
        'account_username' => NULL,
        'account_email' => NULL,
        'account_data' => NULL,
        'total_subscribers' => NULL,
        'sendinblue_logout_form' => NULL,
        'sendinblue_user_register_form' => NULL,
        'sendinblue_send_email_form' => NULL,
      ],
    ],
    'iframe_page' => [
      'variables' => [
        'url_iframe' => NULL,
      ],
    ],
  ];
}