![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/syn.corals.io/vendor/yajra/laravel-datatables-html/src/Html/Options/Plugins/ |
<?php namespace Yajra\DataTables\Html\Options\Plugins; use Yajra\DataTables\Html\Builder; /** * DataTables - Select plugin option builder. * * @see https://datatables.net/extensions/select * @see https://datatables.net/reference/option/select */ trait Select { /** * Set select option value. * * @param bool|array $value * @return $this * @see https://datatables.net/reference/option/select */ public function select($value = true) { $this->attributes['select'] = $value; return $this; } /** * Set select blurable option value. * * @param bool $value * @return $this * @see https://datatables.net/reference/option/select.blurable */ public function selectBlurable(bool $value = true) { $this->attributes['select']['blurable'] = $value; return $this; } /** * Set select className option value. * * @param string $value * @return $this * @see https://datatables.net/reference/option/select.className */ public function selectClassName($value = 'selected') { $this->attributes['select']['className'] = $value; return $this; } /** * Append a class name to className option value. * * @param string $class * @return $this */ public function selectAddClassName($class) { if (! isset($this->attributes['select']['className'])) { $this->attributes['select']['className'] = $class; } else { $this->attributes['select']['className'] .= " $class"; } return $this; } /** * Set select info option value. * * @param bool $value * @return $this * @see https://datatables.net/reference/option/select.info */ public function selectInfo(bool $value = true) { $this->attributes['select']['info'] = $value; return $this; } /** * Set select items option value. * * @param string $value * @return $this * @see https://datatables.net/reference/option/select.items */ public function selectItems($value = 'row') { $this->attributes['select']['items'] = $value; return $this; } /** * Set select items option value to row. * * @return $this * @see https://datatables.net/reference/option/select.items */ public function selectItemsRow() { $this->attributes['select']['items'] = Builder::SELECT_ITEMS_ROW; return $this; } /** * Set select items option value to column. * * @return $this * @see https://datatables.net/reference/option/select.items */ public function selectItemsColumn() { $this->attributes['select']['items'] = Builder::SELECT_ITEMS_COLUMN; return $this; } /** * Set select items option value to cell. * * @return $this * @see https://datatables.net/reference/option/select.items */ public function selectItemsCell() { $this->attributes['select']['items'] = Builder::SELECT_ITEMS_CELL; return $this; } /** * Set select selector option value. * * @param string $value * @return $this * @see https://datatables.net/reference/option/select.selector */ public function selectSelector($value = 'td') { $this->attributes['select']['selector'] = $value; return $this; } /** * Set select style option value. * * @param string $value * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyle($value = 'os') { $this->attributes['select']['style'] = $value; return $this; } /** * Set select style option value to api. * * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyleApi() { $this->attributes['select']['style'] = Builder::SELECT_STYLE_API; return $this; } /** * Set select style option value to single. * * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyleSingle() { $this->attributes['select']['style'] = Builder::SELECT_STYLE_SINGLE; return $this; } /** * Set select style option value to multi. * * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyleMulti() { $this->attributes['select']['style'] = Builder::SELECT_STYLE_MULTI; return $this; } /** * Set select style option value to os. * * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyleOS() { $this->attributes['select']['style'] = Builder::SELECT_STYLE_OS; return $this; } /** * Set select style option value to multi+shift. * * @return $this * @see https://datatables.net/reference/option/select.style */ public function selectStyleMultiShift() { $this->attributes['select']['style'] = Builder::SELECT_STYLE_MULTI_SHIFT; return $this; } }