Plugin Parameters

The MMTC Plugin gives you a variety of parameters for customizing the user’s experience.

Brand

This is the unique code that identifies your plugin.

Possible Values

Your brand code will be sent to you by MMTC after being accepted into the program.

Usage

Button attribute: data-mmtc-brand

Brand
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
  >
  Open</button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" > Open</button>

Language

Changes the modal’s language. If omitted, the system will default to English.

Possible Values

One of the following ISO 639-1 codes:

es - Spanish

en - English

Usage

Button attribute: data-mmtc-lang

Language
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
     data-mmtc-lang="es"
  >
  Open</button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" data-mmtc-lang="es" > Open</button>

Test Targets

Specifies which test (covid, flu, a combination, etc.) was taken, so the user is not prompted for the test type(s). Ensure you specify test targets that align with a test type (e.g., do not specify COVID and Flu A if test kits evaluate for COVID, Flu A, and Flu B).

Possible Values

A comma-separated list of possible test values, including:

covid

fluA

fluB

Usage

Button attribute: data-mmtc-test-targets

Test Targets (Single)
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
     data-mmtc-test-targets="covid"
  >
  Open</button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" data-mmtc-test-targets="covid" > Open</button>
Test Targets (Multiple)
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
     data-mmtc-test-targets="covid,fluA,fluB"
  >
  Open</button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" data-mmtc-test-targets="covid,fluA,fluB" > Open</button>

Test Results

Specifies the result of the test (positive or negative), so the user will not be prompted for the result. You might use this if you have separate buttons for reporting a positive or negative result.

Possible Values

A comma-separated list of possible test values, including:

positive or negative

true or false

1 or 0

Usage

Button attribute: data-mmtc-test-results

Test Results
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
     data-mmtc-test-targets="covid,fluA,fluB"
     data-mmtc-test-results="positive,negative,positive"
  >Open</button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" data-mmtc-test-targets="covid,fluA,fluB" data-mmtc-test-results="positive,negative,positive" >Open</button>

Test Type

Specifies type (manufacturer) of the test, so the user is not prompted for the test type.

Possible Values

A manufacture code from the following list:

iHealth

AbbottBinaxNOW

Flowflex

Quidel

SiemensCLINITEST

Roche

3EOHealth

AccessBioCareStart

anp-nids

Metrix

AzureFastep

BDVeritor

CelltrionDiaTrust

Cue

Cvs

Detect

Ellume

Genabio

Gotoknow

Hotgen

Immunostics

InBios

IntrivoOn/Go

IntrivoOn/GoOne

Lucira

MaximBioClearDetect

INDICAID

InteliSwab

Osang

SDBiosensorPilot

SpeedySwab

Walgreens

Xiamen

Advin

AzureFastepPen

BioTeke

CorDx

CTKBiotech

GenBody

Mologic

NanoDitech

Oceanit

Sekisui

Lucira-Multiplex

OSOM-Multiplex

CorDx-Multiplex

Healgen-Multiplex

iHealth-Multiplex

OHC-Multiplex

WellLife

Usage

Button attribute: data-mmtc-test-type

Test Type
  <button
     data-open-mmtc-dialog
     data-mmtc-brand="yourbrand"
     data-mmtc-test-type="iHealth"
  >
  Open </button>
<button data-open-mmtc-dialog data-mmtc-brand="yourbrand" data-mmtc-test-type="iHealth" > Open </button>