AttachmentInput::handle()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 2
nc 2
nop 2
1
<?php
2
3
namespace Te7aHoudini\LaravelTrix\Pipes;
4
5
use Te7aHoudini\LaravelTrix\LaravelTrix;
6
7
class AttachmentInput
8
{
9
    public function handle(LaravelTrix $trix, \Closure $next)
10
    {
11
        $attachments = is_object($trix->model) ? $trix->model->trixAttachments()->pluck('attachment') : '[]';
12
13
        $trix->html .= "<input id='attachment-{$trix->config['id']}' value='{$attachments}' name='attachment-{$trix->loweredModelName}-trixFields[{$trix->config['field']}]' type='hidden'>";
14
15
        return $next($trix);
16
    }
17
}
18