├── Documentation
├── _build
│ └── .gitignore
├── _static
│ └── .gitignore
├── _templates
│ └── .gitignore
├── Images
│ ├── neos-analytics-module.png
│ ├── neos-analytics-accounts.png
│ ├── neos-analytics-inspector.png
│ ├── google-analytics-profile-id.png
│ ├── google-developers-console-apis.png
│ ├── google-analytics-account-permission.png
│ ├── google-developers-console-enable-api.png
│ ├── google-developers-console-credentials.png
│ ├── google-developers-console-create-project.png
│ ├── google-developers-console-service-account.png
│ ├── google-developers-console-credentials-done.png
│ ├── google-developers-console-project-dashboard.png
│ ├── google-developers-console-create-service-account.png
│ └── google-developers-console-select-service-accounts.png
├── Makefile
├── index.rst
└── conf.py
├── Resources
└── Private
│ ├── Fusion
│ ├── Root.fusion
│ ├── Prototypes
│ │ ├── TrackingCode.Base.fusion
│ │ ├── TrackingCode.GTM.NoScript.fusion
│ │ ├── TrackingCode.GTM.DataLayer.fusion
│ │ ├── TrackingCode.GTM.Script.fusion
│ │ └── TrackingCode.GA.fusion
│ └── Override.fusion
│ ├── Translations
│ ├── pt-PT
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── ta
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── ar
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── cs
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── da
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── el
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── fi
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── fr
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── hu
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── it
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── ja
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── km
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── no
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── pl
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── sr
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── uk
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── vi
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── id_ID
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── sv
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── tl_PH
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── zh
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── zh_TW
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── tr
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── ru
│ │ ├── Main.xlf
│ │ └── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ ├── en
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ ├── es
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ ├── pt_BR
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ ├── de
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ ├── lv
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ ├── nl
│ │ ├── NodeTypes
│ │ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ └── pt
│ │ ├── NodeTypes
│ │ └── StatsTabMixin.xlf
│ │ └── Main.xlf
│ └── BackendFusion
│ ├── Root.fusion
│ ├── Components
│ └── FlashMessages.fusion
│ └── Views
│ └── Configuration.Index.fusion
├── .styleci.yml
├── Configuration
├── Objects.yaml
├── Views.yaml
├── Policy.yaml
├── Settings.yaml
└── NodeTypes.yaml
├── Classes
├── Exception.php
├── Exception
│ ├── AuthenticationRequiredException.php
│ ├── MissingConfigurationException.php
│ └── AnalyticsNotAvailableException.php
├── Service
│ ├── GoogleAnalytics.php
│ ├── DataSource
│ │ └── GoogleAnalyticsDataSource.php
│ └── Reporting.php
├── Controller
│ └── ConfigurationController.php
├── Eel
│ └── Helper
│ │ └── TrackingConfiguration.php
└── Domain
│ └── Dto
│ └── DataResult.php
├── Migrations
├── Mysql
│ ├── Version20141202134558.php
│ ├── Version20190607071727.php
│ ├── Version20170118172429.php
│ └── Version20141111161429.php
└── Postgresql
│ ├── Version20141202134559.php
│ ├── Version20170118172430.php
│ ├── Version20190725070956.php
│ └── Version20141111161430.php
├── README.md
├── Tests
└── Unit
│ └── Domain
│ └── Dto
│ └── DataResultTest.php
├── composer.json
└── LICENSE.txt
/Documentation/_build/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Documentation/_static/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Documentation/_templates/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/Resources/Private/Fusion/Root.fusion:
--------------------------------------------------------------------------------
1 | include: **/*.fusion
2 |
--------------------------------------------------------------------------------
/.styleci.yml:
--------------------------------------------------------------------------------
1 | preset: psr2
2 |
3 | finder:
4 | path:
5 | - "Classes"
6 | - "Tests"
7 |
--------------------------------------------------------------------------------
/Documentation/Images/neos-analytics-module.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/neos-analytics-module.png
--------------------------------------------------------------------------------
/Documentation/Images/neos-analytics-accounts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/neos-analytics-accounts.png
--------------------------------------------------------------------------------
/Documentation/Images/neos-analytics-inspector.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/neos-analytics-inspector.png
--------------------------------------------------------------------------------
/Documentation/Images/google-analytics-profile-id.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-analytics-profile-id.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-apis.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-apis.png
--------------------------------------------------------------------------------
/Documentation/Images/google-analytics-account-permission.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-analytics-account-permission.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-enable-api.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-enable-api.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-credentials.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-credentials.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-create-project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-create-project.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-service-account.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-service-account.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-credentials-done.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-credentials-done.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-project-dashboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-project-dashboard.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-create-service-account.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-create-service-account.png
--------------------------------------------------------------------------------
/Documentation/Images/google-developers-console-select-service-accounts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/neos/neos-googleanalytics/HEAD/Documentation/Images/google-developers-console-select-service-accounts.png
--------------------------------------------------------------------------------
/Configuration/Objects.yaml:
--------------------------------------------------------------------------------
1 | Neos\GoogleAnalytics\Service\GoogleAnalytics:
2 | arguments:
3 | 1:
4 | object:
5 | factoryObjectName: Flowpack\GoogleApiClient\Service\ClientFactory
6 | factoryMethodName: create
7 |
--------------------------------------------------------------------------------
/Resources/Private/Translations/pt-PT/Main.xlf:
--------------------------------------------------------------------------------
1 |
2 |
| {Translation.translate('Neos.GoogleAnalytics:Main:accounts', 'Authenticated accounts')} | 14 |
|---|
19 |
|
28 |
| {Translation.translate('Neos.GoogleAnalytics:Main:site.name', 'Site')} | 36 |{Translation.translate('Neos.GoogleAnalytics:Main:site. gaProfile', 'Google Analytics Profile')} | 37 |{Translation.translate('Neos.GoogleAnalytics:Main:site.gaTrackingId', 'Tracking ID')} | 38 |{Translation.translate('Neos.GoogleAnalytics:Main:site.tagManagerId', 'Tag Manager ID')} | 39 |
|---|---|---|---|
| {siteName} | 45 |{site.profileId} | 46 |{site.analytics.id} | 47 |{site.tagManager.id} | 48 |