| Conditions | 5 |
| Paths | 3 |
| Total Lines | 15 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace Anomaly\Streams\Platform\Ui\Table\Component\View; |
||
| 21 | public function defaults(TableBuilder $builder) |
||
| 22 | { |
||
| 23 | if (!$stream = $builder->getTableStream()) { |
||
| 24 | return; |
||
| 25 | } |
||
| 26 | |||
| 27 | if ($stream->isTrashable() && !$builder->getViews() && !$builder->isAjax()) { |
||
| 28 | $builder->setViews( |
||
| 29 | [ |
||
| 30 | 'all', |
||
| 31 | 'trash' |
||
| 32 | ] |
||
| 33 | ); |
||
| 34 | } |
||
| 35 | } |
||
| 36 | } |
||
| 37 |