| 1 | <?php |
||
| 7 | abstract class DataTable extends BaseDataTable |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Get attributes for a "static" column that can not be |
||
| 11 | * ordered, searched, or exported. |
||
| 12 | * |
||
| 13 | * @param string $name |
||
| 14 | * @param array $attributes |
||
| 15 | * @return $this |
||
| 16 | */ |
||
| 17 | protected function staticColumn($name, array $attributes = []) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get filename for export. |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | protected function filename() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Get default builder parameters. |
||
| 45 | * |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | protected function getBuilderParameters() |
||
| 54 | } |
||
| 55 |