WordPress\AiClient\Files\DTO

File::isRemotepublicWP 0.1.0

Checks if the file is a remote file.

Метод класса: File{}

Хуков нет.

Возвращает

true|false. True if the file is remote (URL).

Использование

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

Список изменений

С версии 0.1.0 Введена.

Код File::isRemote() WP 7.0

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