update deploy

This commit is contained in:
bulut
2026-03-27 10:41:54 +03:00
parent 69d19c0176
commit 6f6448aa06
422 changed files with 37956 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<?php
namespace App\DTOs;
final readonly class HeroSlideData
{
public function __construct(
public string $title,
public ?string $label = null,
public ?string $description = null,
public string $mediaType = 'image',
public ?string $image = null,
public ?string $videoUrl = null,
public ?string $mobileVideoUrl = null,
public ?string $mobileImage = null,
public ?string $buttonText = null,
public ?string $buttonUrl = null,
public int $orderIndex = 0,
public bool $isActive = true,
) {}
/**
* @param array<string, mixed> $data
*/
public static function fromArray(array $data): self
{
return new self(
title: $data['title'],
label: $data['label'] ?? null,
description: $data['description'] ?? null,
mediaType: $data['media_type'] ?? 'image',
image: $data['image'] ?? null,
videoUrl: $data['video_url'] ?? null,
mobileVideoUrl: $data['mobile_video_url'] ?? null,
mobileImage: $data['mobile_image'] ?? null,
buttonText: $data['button_text'] ?? null,
buttonUrl: $data['button_url'] ?? null,
orderIndex: $data['order_index'] ?? 0,
isActive: $data['is_active'] ?? true,
);
}
/**
* @return array<string, mixed>
*/
public function toArray(): array
{
return [
'label' => $this->label,
'title' => $this->title,
'description' => $this->description,
'media_type' => $this->mediaType,
'image' => $this->image,
'video_url' => $this->videoUrl,
'mobile_video_url' => $this->mobileVideoUrl,
'mobile_image' => $this->mobileImage,
'button_text' => $this->buttonText,
'button_url' => $this->buttonUrl,
'order_index' => $this->orderIndex,
'is_active' => $this->isActive,
];
}
}