| 12345678910111213141516171819202122232425 |
- <?php
- namespace Opentalent\OtStats\Settings;
- use TYPO3\CMS\Frontend\Page\PageRepository;
- /**
- * Class StatsRepository
- *
- * Give access to the website's settings for the stats module
- *
- * @package Opentalent\OtTemplating\Page
- */
- class StatsSettingsRepository extends PageRepository
- {
- /**
- * Returns the website registered matomo site's id
- * @param int $rootPageUid
- * @return int|null
- */
- public function getMatomoSiteId(int $rootPageUid) {
- $rootPage = $this->getPage($rootPageUid);
- return $rootPage['tx_opentalent_matomo_id'];
- }
- }
|