mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
32 lines
812 B
PHP
32 lines
812 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Http\Api\Field\User\Notification;
|
|
|
|
use App\Http\Api\Criteria\Field\Criteria;
|
|
use App\Http\Api\Field\DateField;
|
|
use App\Http\Api\Query\Query;
|
|
use App\Http\Api\Schema\Schema;
|
|
use App\Models\User\Notification;
|
|
|
|
class NotificationReadAtField extends DateField
|
|
{
|
|
public function __construct(Schema $schema)
|
|
{
|
|
parent::__construct($schema, Notification::ATTRIBUTE_READ_AT);
|
|
}
|
|
|
|
/**
|
|
* Determine if the field should be displayed to the user.
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function shouldRender(Query $query): bool
|
|
{
|
|
$criteria = $query->getFieldCriteria($this->schema->type());
|
|
|
|
return ! $criteria instanceof Criteria || $criteria->isAllowedField($this->getKey());
|
|
}
|
|
}
|