PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
yajra
/
laravel-datatables-html
/
src
/
Html
<?php namespace Yajra\DataTables\Html; use Yajra\DataTables\Html\Editor\Editor; trait HasEditor { /** * Collection of Editors. * * @var null|Editor */ protected $editors = []; /** * Attach multiple editors to builder. * * @param array|mixed ...$editors * @return $this * @see https://editor.datatables.net/ * @throws \Exception */ public function editors(...$editors) { if (is_array($editors[0])) { $editors = $editors[0]; } foreach ($editors as $editor) { $this->editor($editor); } return $this; } /** * Integrate with DataTables Editor. * * @param array|Editor $fields * @return $this * @see https://editor.datatables.net/ * @throws \Exception */ public function editor($fields) { $this->setTemplate($this->config->get('datatables-html.editor', 'datatables::editor')); $editor = $this->newEditor($fields); $this->editors[] = $editor; return $this; } /** * @param array|Editor $fields * @return array|Editor * @throws \Exception */ protected function newEditor($fields) { if ($fields instanceof Editor) { $editor = $fields; } else { $editor = new Editor; $editor->fields($fields); } if (! $editor->table) { $editor->table('#' . $this->getTableAttribute('id')); } if (! $editor->ajax) { $editor->ajax($this->getAjaxUrl()); } return $editor; } /** * @return array|null */ public function getEditors() { return $this->editors; } }
[-] HasAuthorizations.php
[edit]
[-] SearchPane.php
[edit]
[+]
Options
[-] Parameters.php
[edit]
[-] HasEditor.php
[edit]
[+]
..
[-] ColumnDefinition.php
[edit]
[-] Column.php
[edit]
[-] HasTable.php
[edit]
[-] HasOptions.php
[edit]
[-] Builder.php
[edit]
[-] ColumnDefinitions.php
[edit]
[+]
Columns
[+]
Editor
[-] Button.php
[edit]