/
home
/
techb158
/
immovalet.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
/
Editor
/
/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Editor
mkdir
upload
Name
Size
Mode
Actions
Fields/
-
0755
rm
Editor.php
6999
0644
edit
dl
rm
FormOptions.php
2715
0644
edit
dl
rm
HasEvents.php
2313
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/yajra/laravel-datatables-html/src/Html/Editor/FormOptions.php
(2715B)
<?php namespace Yajra\DataTables\Html\Editor; use Illuminate\Support\Fluent; /** * @see https://editor.datatables.net/reference/type/form-options */ class FormOptions extends Fluent { /** * @param array $attributes * @return \Yajra\DataTables\Html\Editor\FormOptions */ public static function make($attributes = []) { return new static($attributes); } /** * @param int $value * @return $this */ public function focus($value = 0) { $this->attributes['focus'] = $value; return $this; } /** * @param bool $value * @return $this */ public function message($value = false) { $this->attributes['message'] = $value; return $this; } /** * @param string $value * @return $this */ public function onBackground($value = 'blur') { $this->attributes['onBackground'] = $value; return $this; } /** * @param string $value * @return $this */ public function onBlur($value = 'close') { $this->attributes['onBlur'] = $value; return $this; } /** * @param string $value * @return $this */ public function onComplete($value = 'close') { $this->attributes['onComplete'] = $value; return $this; } /** * @param string $value * @return $this */ public function onEsc($value = 'close') { $this->attributes['onEsc'] = $value; return $this; } /** * @param string $value * @return $this */ public function onFieldError($value = 'focus') { $this->attributes['onFieldError'] = $value; return $this; } /** * @param string $value * @return $this */ public function onReturn($value = 'submit') { $this->attributes['onReturn'] = $value; return $this; } /** * @param string $value * @return $this */ public function submit($value = 'changed') { $this->attributes['submit'] = $value; return $this; } /** * @param bool $value * @return $this */ public function title($value = false) { $this->attributes['title'] = $value; return $this; } /** * @param bool $value * @return $this */ public function drawType($value = false) { $this->attributes['drawType'] = $value; return $this; } /** * @param string $value * @return $this */ public function scope($value = 'row') { $this->attributes['scope'] = $value; return $this; } }
Save
cmd:
run