HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.111.1.lve.el8.x86_64 #1 SMP Fri Mar 13 13:42:17 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/www/printmanager/vendor/filament/tables/src/Columns/Concerns/CanBeDisabled.php
<?php

namespace Filament\Tables\Columns\Concerns;

use Closure;

trait CanBeDisabled
{
    protected bool | Closure $isDisabled = false;

    protected bool | Closure $isClickDisabled = false;

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

        return $this;
    }

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

        return $this;
    }

    /**
     * @deprecated Use `disabledClick()` instead.
     */
    public function disableClick(bool | Closure $condition = true): static
    {
        $this->disabledClick($condition);

        return $this;
    }

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

    public function isEnabled(): bool
    {
        return ! $this->isDisabled();
    }

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