[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: Field.php
<?php namespace Yajra\DataTables\Html\Editor\Fields; use Closure; use Illuminate\Contracts\Support\Arrayable; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Query\Builder as QueryBuilder; use Illuminate\Support\Fluent; use Illuminate\Support\Str; use Illuminate\Support\Traits\Macroable; use Yajra\DataTables\Html\HasAuthorizations; /** * @see https://editor.datatables.net/reference/option/ */ class Field extends Fluent { use HasAuthorizations; use Macroable; /** * Field type. */ protected string $type = 'text'; /** * Password constructor. * * @param array $attributes */ public function __construct($attributes = []) { $attributes['type'] ??= $this->type; parent::__construct($attributes); } /** * Make a new instance of a field. */ public static function make(array|string $name, string $label = ''): static { if (is_array($name)) { return new static($name); } $data = [ 'name' => $name, 'label' => $label ?: Str::title(str_replace('_', ' ', $name)), ]; return new static($data); } /** * @return $this * * @see https://editor.datatables.net/reference/option/fields.label */ public function label(string $label): static { $this->attributes['label'] = $label; return $this; } /** * @return $this * * @see https://editor.datatables.net/reference/option/fields.name */ public function name(string $name): static { $this->attributes['name'] = $name; return $this; } /** * @return $this * * @see https://editor.datatables.net/reference/option/fields.data */ public function data(string $data): static { $this->attributes['data'] = $data; return $this; } /** * @return $this * * @see https://editor.datatables.net/reference/option/fields.type */ public function type(string $type): static { $this->attributes['type'] = $type; $this->type = $type; return $this; } /** * Get options from a model. * * @param \Illuminate\Database\Eloquent\Builder|class-string<\Illuminate\Database\Eloquent\Model> $model * @return $this */ public function modelOptions(Builder|string $model, string $value, string $key = 'id'): static { return $this->options( Options::model($model, $value, $key) ); } /** * Get options from a Enum::cases(). * * @return $this */ public function enumOptions(array $cases): static { $options = []; foreach ($cases as $case) { $options[] = [ 'value' => $case->value, 'label' => $case->value, ]; } return $this->options($options); } /** * Set select options. * * @return $this */ public function options(array|Arrayable $options): static { if ($options instanceof Arrayable) { $options = $options->toArray(); } $this->attributes['options'] = $options; return $this; } /** * Get options from a table. * * @return $this */ public function tableOptions( QueryBuilder|Closure|string $table, string $value, string $key = 'id', ?Closure $whereCallback = null, ?string $connection = null ): static { return $this->options( Options::table($table, $value, $key, $whereCallback, $connection) ); } /** * Set checkbox separator. * * @return $this */ public function separator(string $separator = ','): static { $this->attributes['separator'] = $separator; return $this; } /** * Set dateTime format. * * @return $this * * @see https://editor.datatables.net/reference/field/datetime */ public function format(string $format): static { $this->attributes['format'] = $format; return $this; } /** * Set field default value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.def */ public function default(float|bool|int|string|array $value): static { $this->attributes['def'] = $value; return $this; } /** * Set field message value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.message */ public function message(string $value): static { $this->attributes['message'] = $value; return $this; } /** * Set field fieldInfo value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.fieldInfo */ public function fieldInfo(string $value): static { $this->attributes['fieldInfo'] = $value; return $this; } /** * Set field labelInfo value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.labelInfo */ public function labelInfo(string $value): static { $this->attributes['labelInfo'] = $value; return $this; } /** * Set field entityDecode value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.entityDecode */ public function entityDecode(bool $value): static { $this->attributes['entityDecode'] = $value; return $this; } /** * Set field multiEditable value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.multiEditable */ public function multiEditable(bool $value): static { $this->attributes['multiEditable'] = $value; return $this; } /** * Set field id value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.id */ public function id(string $value): static { $this->attributes['id'] = $value; return $this; } /** * Set field submit value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.submit */ public function submit(bool $value): static { $this->attributes['submit'] = $value; return $this; } /** * Set field compare value. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.compare */ public function compare(bool $value): static { $this->attributes['compare'] = $value; return $this; } /** * Set field opts value. * * @return $this * * @see https://datatables.net/forums/discussion/comment/156581/#Comment_156581 */ public function opts(array $value): static { if (! isset($this->attributes['opts'])) { $this->attributes['opts'] = $value; } else { $this->attributes['opts'] = array_merge((array) $this->attributes['opts'], $value); } return $this; } /** * Set field element html attributes. * * @return $this * * @see https://datatables.net/forums/discussion/comment/156581/#Comment_156581 */ public function attr(string $attribute, int|bool|string $value): static { if (! isset($this->attributes['attr'])) { $this->attributes['attr'] = []; } $attributes = (array) $this->attributes['attr']; $attributes[$attribute] = $value; $this->attributes['attr'] = $attributes; return $this; } public function getType(): string { return $this->type; } /** * Replace null values with the field's default on edit. * * @return $this * * @see https://editor.datatables.net/reference/option/fields.nullDefault */ public function nullDefault(bool $value = true): static { $this->attributes['nullDefault'] = $value; return $this; } /** * @return $this * * @see https://editor.datatables.net/reference/option/fields.className */ public function className(string $className): static { $this->attributes['className'] = $className; return $this; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.26 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002