2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2019-08-07 14:53:59 -05:00
|
|
|
|
2019-09-29 17:37:03 +01:00
|
|
|
class GoogleAnalyticsInfo extends ExtensionInfo
|
2019-08-07 14:53:59 -05:00
|
|
|
{
|
|
|
|
public const KEY = "google_analytics";
|
|
|
|
|
|
|
|
public $key = self::KEY;
|
|
|
|
public $name = "Google Analytics";
|
|
|
|
public $url = "http://drudexsoftware.com";
|
|
|
|
public $authors = ["Drudex Software"=>"support@drudexsoftware.com"];
|
|
|
|
public $license = self::LICENSE_GPLV2;
|
|
|
|
public $description = "Integrates Google Analytics tracking";
|
|
|
|
public $documentation =
|
|
|
|
"User has to enter their Google Analytics ID in the Board Config to use this extension.";
|
|
|
|
}
|