Sindbad~EG File Manager

Current Path : /home/webg5288/public_html/laravel_kendal/vendor/filament/actions/src/Concerns/
Upload File :
Current File : /home/webg5288/public_html/laravel_kendal/vendor/filament/actions/src/Concerns/CanOpenUrl.php

<?php

namespace Filament\Actions\Concerns;

use Closure;

trait CanOpenUrl
{
    protected bool | Closure $shouldOpenUrlInNewTab = false;

    protected string | Closure | null $url = null;

    public function openUrlInNewTab(bool | Closure $condition = true): static
    {
        $this->shouldOpenUrlInNewTab = $condition;

        return $this;
    }

    public function url(string | Closure | null $url, bool | Closure $shouldOpenInNewTab = false): static
    {
        $this->openUrlInNewTab($shouldOpenInNewTab);
        $this->url = $url;

        return $this;
    }

    public function getUrl(): ?string
    {
        return $this->evaluate($this->url);
    }

    public function shouldOpenUrlInNewTab(): bool
    {
        return (bool) $this->evaluate($this->shouldOpenUrlInNewTab);
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists