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 /** * Copyright (c) 2019. Mallto.Co.Ltd.<mall-to.com> All rights reserved. */ nam..
Decoded Output download
<?php
/**
* Copyright (c) 2019. Mallto.Co.Ltd.<mall-to.com> All rights reserved.
*/
namespace Encore\Admin\Form\Layout;
use Encore\Admin\Form;
use Illuminate\Support\Collection;
class Layout
{
/**
* @var Collection
*/
protected $columns;
/**
* @var Column
*/
protected $current;
/**
* @var Form
*/
protected $parent;
/**
* Layout constructor.
*
* @param Form $form
*/
public function __construct(Form $form)
{
$this->parent = $form;
$this->current = new Column();
$this->columns = new Collection();
}
/**
* Add a filter to layout column.
*
* @param Form\Field $field
*/
public function addField(Form\Field $field)
{
$this->current->add($field);
}
/**
* Add a new column in layout.
*
* @param int $width
* @param \Closure $closure
*/
public function column($width, \Closure $closure)
{
if ($this->columns->isEmpty()) {
$column = $this->current;
$column->setWidth($width);
} else {
$column = new Column($width);
$this->current = $column;
}
$this->columns->push($column);
$closure($this->parent);
}
/**
* Get all columns in filter layout.
*
* @return Collection
*/
public function columns()
{
if ($this->columns->isEmpty()) {
$this->columns->push($this->current);
}
return $this->columns;
}
/**
* Remove reserved fields from form layout.
*
* @param array $fields
*/
public function removeReservedFields(array $fields)
{
if (empty($fields)) {
return;
}
foreach ($this->columns() as &$column) {
$column->removeFields($fields);
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* Copyright (c) 2019. Mallto.Co.Ltd.<mall-to.com> All rights reserved.
*/
namespace Encore\Admin\Form\Layout;
use Encore\Admin\Form;
use Illuminate\Support\Collection;
class Layout
{
/**
* @var Collection
*/
protected $columns;
/**
* @var Column
*/
protected $current;
/**
* @var Form
*/
protected $parent;
/**
* Layout constructor.
*
* @param Form $form
*/
public function __construct(Form $form)
{
$this->parent = $form;
$this->current = new Column();
$this->columns = new Collection();
}
/**
* Add a filter to layout column.
*
* @param Form\Field $field
*/
public function addField(Form\Field $field)
{
$this->current->add($field);
}
/**
* Add a new column in layout.
*
* @param int $width
* @param \Closure $closure
*/
public function column($width, \Closure $closure)
{
if ($this->columns->isEmpty()) {
$column = $this->current;
$column->setWidth($width);
} else {
$column = new Column($width);
$this->current = $column;
}
$this->columns->push($column);
$closure($this->parent);
}
/**
* Get all columns in filter layout.
*
* @return Collection
*/
public function columns()
{
if ($this->columns->isEmpty()) {
$this->columns->push($this->current);
}
return $this->columns;
}
/**
* Remove reserved fields from form layout.
*
* @param array $fields
*/
public function removeReservedFields(array $fields)
{
if (empty($fields)) {
return;
}
foreach ($this->columns() as &$column) {
$column->removeFields($fields);
}
}
}
Function Calls
None |
Stats
MD5 | c303d28dd639cd55ca46a2cfd3cea3c9 |
Eval Count | 0 |
Decode Time | 102 ms |