Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Filament\Infolists\Components\Actions; use Filament\Infolists\Components..
Decoded Output download
<?php
namespace Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Component;
class ActionContainer extends Component
{
protected string $view = 'filament-infolists::components.actions.action-container';
final public function __construct(Action $action)
{
$this->action($action);
}
public static function make(Action $action): static
{
$static = app(static::class, ['action' => $action]);
$static->configure();
return $static;
}
public function getKey(): string
{
return parent::getKey() ?? "{$this->getStatePath()}.{$this->getAction()->getName()}Action";
}
public function isHidden(): bool
{
return $this->getAction()->isHidden();
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Filament\Infolists\Components\Actions;
use Filament\Infolists\Components\Component;
class ActionContainer extends Component
{
protected string $view = 'filament-infolists::components.actions.action-container';
final public function __construct(Action $action)
{
$this->action($action);
}
public static function make(Action $action): static
{
$static = app(static::class, ['action' => $action]);
$static->configure();
return $static;
}
public function getKey(): string
{
return parent::getKey() ?? "{$this->getStatePath()}.{$this->getAction()->getName()}Action";
}
public function isHidden(): bool
{
return $this->getAction()->isHidden();
}
}
Function Calls
None |
Stats
MD5 | 6504f1558cf974ec082b723b7d11f730 |
Eval Count | 0 |
Decode Time | 93 ms |