| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- namespace Opentalent\OtStats\Domain\Model;
- class MatomoWebsite
- {
- /**
- * Website's id in the matomo DB
- * @var int
- */
- public $id;
- /**
- * Name of the website in the matomo db
- *
- * @var string
- */
- public $name;
- /**
- * Main url of the website to monitor
- *
- * @var string
- */
- public $mainUrl;
- /**
- * Ips to ignore
- *
- * @var
- */
- public $excludedIps;
- /**
- * Matomo type (always 'website')
- *
- * @var string
- */
- public $type;
- /**
- * Login of the record creator (always 'matomo')
- *
- * @var string
- */
- public $creatorLogin;
- /**
- * @return int
- */
- public function getId(): int
- {
- return $this->id;
- }
- /**
- * @param int $id
- */
- public function setId(int $id): void
- {
- $this->id = $id;
- }
- /**
- * @return string
- */
- public function getName(): string
- {
- return $this->name;
- }
- /**
- * @param string $name
- */
- public function setName(string $name): void
- {
- $this->name = $name;
- }
- /**
- * @return string
- */
- public function getMainUrl(): string
- {
- return $this->mainUrl;
- }
- /**
- * @param string $mainUrl
- */
- public function setMainUrl(string $mainUrl): void
- {
- $this->mainUrl = $mainUrl;
- }
- /**
- * @return mixed
- */
- public function getExcludedIps()
- {
- return $this->excludedIps;
- }
- /**
- * @param mixed $excludedIps
- */
- public function setExcludedIps($excludedIps): void
- {
- $this->excludedIps = $excludedIps;
- }
- /**
- * @return string
- */
- public function getType(): string
- {
- return $this->type;
- }
- /**
- * @param string $type
- */
- public function setType(string $type): void
- {
- $this->type = $type;
- }
- /**
- * @return string
- */
- public function getCreatorLogin(): string
- {
- return $this->creatorLogin;
- }
- /**
- * @param string $creatorLogin
- */
- public function setCreatorLogin(string $creatorLogin): void
- {
- $this->creatorLogin = $creatorLogin;
- }
- }
|