/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Editor/Fields
NameSizeModeActions
BelongsTo.php14780644editdlrm
Boolean.php4590644editdlrm
Checkbox.php1220644editdlrm
Date.php3990644editdlrm
DateTime.php31170644editdlrm
Field.php70110644editdlrm
File.php37970644editdlrm
Hidden.php1180644editdlrm
Image.php5790644editdlrm
Number.php2180644editdlrm
Options.php25630644editdlrm
Password.php1220644editdlrm
Radio.php1160644editdlrm
ReadOnly.php1220644editdlrm
Select.php1180644editdlrm
Select2.php30340644editdlrm
Text.php840644editdlrm
TextArea.php4280644editdlrm
Time.php6620644editdlrm
Edit: /home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Editor/Fields/File.php (3797B)
displayFile()->clearText()->noImageText(); } /** * @param string $value * @return $this */ public function ajax($value) { $this->attributes['ajax'] = $value; return $this; } /** * @param string $value * @return $this */ public function ajaxData($value) { $this->attributes['ajaxData'] = $value; return $this; } /** * @param bool $value * @return $this */ public function dragDrop($value = true) { $this->attributes['dragDrop'] = $value; return $this; } /** * @param string $value * @return $this */ public function dragDropText($value) { $this->attributes['dragDropText'] = $value; return $this; } /** * @param string $value * @return $this */ public function fileReadText($value) { $this->attributes['fileReadText'] = $value; return $this; } /** * @param string $value * @return $this */ public function noFileText($value) { $this->attributes['noFileText'] = $value; return $this; } /** * @param string $value * @return $this */ public function processingText($value) { $this->attributes['processingText'] = $value; return $this; } /** * @param string $value * @return $this */ public function uploadText($value) { $this->attributes['uploadText'] = $value; return $this; } /** * Set editor instance for file upload. * * @param string $editor * @return $this */ public function editor($editor) { $this->editor = $editor; return $this; } /** * Display image upon upload. * * @return $this */ public function displayImage() { return $this->display("function (file_id) { return file_id ? '' : null; }"); } /** * @param string $value * @return $this */ public function display($value) { $this->attributes['display'] = $value; return $this; } /** * Display the file path. * * @return $this */ public function displayFile() { return $this->display("function (file_id) { return file_id; }"); } /** * @param string $value * @return $this */ public function clearText($value = 'Clear') { $this->attributes['clearText'] = $value; return $this; } /** * @param string $value * @return $this */ public function noImageText($value = 'No image') { $this->attributes['noImageText'] = $value; return $this; } /** * @param bool $state * @return $this */ public function multiple($state = true) { if ($state) { $this->type('uploadMany'); } return $this; } }