File: /home/posscale/public_html/printmanager/vendor/filament/forms/src/Contracts/HasForms.php
<?php
namespace Filament\Forms\Contracts;
use Filament\Forms\ComponentContainer;
use Filament\Forms\Form;
use Filament\Support\Contracts\TranslatableContentDriver;
use Livewire\Features\SupportFileUploads\TemporaryUploadedFile;
interface HasForms
{
public function dispatchFormEvent(mixed ...$args): void;
public function getActiveFormsLocale(): ?string;
public function makeFilamentTranslatableContentDriver(): ?TranslatableContentDriver;
public function getForm(string $name): ?Form;
public function getFormComponentFileAttachment(string $statePath): ?TemporaryUploadedFile;
public function getFormComponentFileAttachmentUrl(string $statePath): ?string;
/**
* @return array<array{'label': string, 'value': string}>
*/
public function getFormSelectOptionLabels(string $statePath): array;
public function getFormSelectOptionLabel(string $statePath): ?string;
/**
* @return array<array{'label': string, 'value': string}>
*/
public function getFormSelectOptions(string $statePath): array;
/**
* @return array<array{'label': string, 'value': string}>
*/
public function getFormSelectSearchResults(string $statePath, string $search): array;
/**
* @return array<array{name: string, size: int, type: string, url: string} | null> | null
*/
public function getFormUploadedFiles(string $statePath): ?array;
public function getOldFormState(string $statePath): mixed;
public function isCachingForms(): bool;
public function removeFormUploadedFile(string $statePath, string $fileKey): void;
/**
* @param array<array-key> $fileKeys
*/
public function reorderFormUploadedFiles(string $statePath, array $fileKeys): void;
/**
* @param array<string, array<mixed>> | null $rules
* @param array<string, string> $messages
* @param array<string, string> $attributes
* @return array<string, mixed>
*/
public function validate($rules = null, $messages = [], $attributes = []);
public function currentlyValidatingForm(?ComponentContainer $form): void;
}