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 Encore\Admin\Grid\Displayers; use Encore\Admin\Admin; use Illuminate\Sup..
Decoded Output download
<?php
namespace Encore\Admin\Grid\Displayers;
use Encore\Admin\Admin;
use Illuminate\Support\Arr;
class SwitchDisplay extends AbstractDisplayer
{
/**
* @var array
*/
protected $states = [
'on' => ['value' => 1, 'text' => 'ON', 'color' => 'primary'],
'off' => ['value' => 0, 'text' => 'OFF', 'color' => 'default'],
];
protected function overrideStates($states)
{
if (empty($states)) {
return;
}
foreach (Arr::dot($states) as $key => $state) {
Arr::set($this->states, $key, $state);
}
}
public function display($states = [])
{
$this->overrideStates($states);
return Admin::component('admin::grid.inline-edit.switch', [
'class' => 'grid-switch-'.str_replace('.', '-', $this->getName()),
'key' => $this->getKey(),
'resource' => $this->getResource(),
'name' => $this->getPayloadName(),
'states' => $this->states,
'checked' => $this->states['on']['value'] == $this->getValue() ? 'checked' : '',
]);
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Encore\Admin\Grid\Displayers;
use Encore\Admin\Admin;
use Illuminate\Support\Arr;
class SwitchDisplay extends AbstractDisplayer
{
/**
* @var array
*/
protected $states = [
'on' => ['value' => 1, 'text' => 'ON', 'color' => 'primary'],
'off' => ['value' => 0, 'text' => 'OFF', 'color' => 'default'],
];
protected function overrideStates($states)
{
if (empty($states)) {
return;
}
foreach (Arr::dot($states) as $key => $state) {
Arr::set($this->states, $key, $state);
}
}
public function display($states = [])
{
$this->overrideStates($states);
return Admin::component('admin::grid.inline-edit.switch', [
'class' => 'grid-switch-'.str_replace('.', '-', $this->getName()),
'key' => $this->getKey(),
'resource' => $this->getResource(),
'name' => $this->getPayloadName(),
'states' => $this->states,
'checked' => $this->states['on']['value'] == $this->getValue() ? 'checked' : '',
]);
}
}
Function Calls
None |
Stats
MD5 | 63884ad68a494720bd114318ce382b82 |
Eval Count | 0 |
Decode Time | 91 ms |