-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ardit-baloku
authored
Aug 18, 2021
1 parent
b5cdf32
commit dac7cab
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
layout: analytics | ||
title: MallTv | ||
description: MallTv Analytics Adapter | ||
modulecode: malltvAnalytics | ||
enable_download: true | ||
--- | ||
|
||
#### Registration | ||
|
||
This is currently a private adapter | ||
|
||
#### Analytics Options | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Parameter | Scope | Type | Description | Example | | ||
| --- | --- | --- | --- | --- | | ||
| provider | Required | String | The name of this module: `malltvAnalytics` | `malltvAnalytics` | | ||
| options.propertyId | Required | String | This is the property id of the website where this adapter is being used. | `123456` | | ||
| options.server | Optional | String | Overrides the server used for sending analytics | `https://central.mall.tv/analytics` | | ||
|
||
|
||
### Example Configuration | ||
|
||
```javascript | ||
pbjs.enableAnalytics({ | ||
provider: 'malltvAnalytics', | ||
options: { | ||
propertyId: '123456', | ||
server: 'https://central.mall.tv/analytics' | ||
} | ||
}); | ||
``` |