WordPress\AiClient\Files\DTO

File::isInlinepublicWP 0.1.0

Checks if the file is an inline file.

Method of the class: File{}

No Hooks.

Returns

true|false. True if the file is inline (base64/data URI).

Usage

$File = new File();
$File->isInline(): bool;

Changelog

Since 0.1.0 Introduced.

File::isInline() code WP 7.0

public function isInline(): bool
{
    return $this->fileType->isInline();
}