Файловый менеджер - Редактировать - /home/digitalm/yhubita/wp-content/plugins/anti-spam/includes/scanner/classes/scanner/Signature.php
Назад
<?php namespace WBCR\Titan\MalwareScanner; /** * Class Signature * * @author Alexander Gorenkov <g.a.androidjc2@ya.ru> */ class Signature implements \JsonSerializable { const TYPE_SERVER = 'server'; const TYPE_BROWSER = 'browser'; const TYPE_BOTH = 'both'; const SEVER_CRITICAL = 'c'; const SEVERITY_SUSPICIOUS = 's'; const SEVER_WARNING = 'w'; const SEVER_INTO = 'i'; /** * @var int */ protected $id; /** * @var string */ protected $format; /** * @var int */ protected $childId; /** * @var string */ protected $sever; /** * @var string */ protected $title; /** * @var string */ protected $type; /** * @var int[] */ protected $common_indexes; /** * @var string */ protected $signature; /** * Signature constructor. * * @param int $id * @param string $format * @param int|null $childId * @param string $sever * @param string $title * @param string $type * @param int[] $common_indexes * @param string $signature */ public function __construct( $id, $format, $childId, $sever, $title, $type, $common_indexes, $signature ) { $this->id = (int) $id; $this->format = $format; $this->childId = (int) $childId; $this->sever = $sever; $this->title = $title; $this->type = $type; $this->common_indexes = $common_indexes; $this->signature = $signature; } /** * @return int */ public function getId() { return $this->id; } /** * @return string */ public function getFormat() { return $this->format; } /** * @return int|null */ public function getChildId() { return $this->id; } /** * @return string */ public function getSever() { return $this->sever; } /** * @return string */ public function getTitle() { return $this->title; } /** * @return string */ public function getType() { return $this->type; } /** * @return int[] */ public function getCommonIndexes() { return $this->common_indexes; } /** * @return string */ public function getSignature() { return $this->signature; } /** * @return string */ public function __toString() { return sprintf( "[ID%s][child=%s sever=%s title=%s format=%s]: %s", $this->getId(), $this->getChildId(), $this->getSever(), $this->getTitle(), $this->getFormat(), $this->getSignature() ); } /** * @param array $params * * @return Signature|null */ public static function fromArray( $params ) { if ( empty( $params['id'] ) || empty( $params['format'] ) || empty( $params['severity'] ) || empty( $params['title'] ) || empty( $params['type'] ) || empty( $params['content'] ) ) { return null; } if ( ! isset( $params['child_id'] ) ) { $params['child_id'] = null; } if ( ! isset( $params['common_indexes'] ) ) { $params['common_indexes'] = []; } return new Signature( $params['id'], $params['format'], $params['child_id'], $params['severity'], $params['title'], $params['type'], $params['common_indexes'], $params['content'] ); } /** * @return array */ public function jsonSerialize() { return [ 'id' => $this->id, 'format' => $this->format, 'sever' => $this->sever, 'title' => $this->title, 'type' => $this->type, ]; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Генерация страницы: 0.03 |
proxy
|
phpinfo
|
Настройка