abstract class VolumeFileLabelController extends Controller

Traits

AuthorizesRequests
ValidatesRequests

Methods

bool
isAutomatedRequest(Request $request = null)

Determines if the request was done by an automated script (with API token or ajax).

RedirectResponse
fuzzyRedirect()

Redirects to the _redirect URL, to a route or else back.

Response
index(int $id)

Shows all labels of the specified file.

Response
baseStore(StoreVolumeFileLabel $request)

Creates a new label for the specified file.

Response
destroy(int $id)

Deletes the specified file label.

string
getFileModel()

Get the file model class name.

string
getFileLabelModel()

Get the file label model class name.

Details

in Controller at line 21
bool isAutomatedRequest(Request $request = null)

Determines if the request was done by an automated script (with API token or ajax).

Parameters

Request $request

Return Value

bool

in Controller at line 15
protected RedirectResponse fuzzyRedirect()

Redirects to the _redirect URL, to a route or else back.

Return Value

RedirectResponse

at line 16
Response index(int $id)

Shows all labels of the specified file.

Parameters

int $id

File ID

Return Value

Response

at line 33
Response baseStore(StoreVolumeFileLabel $request)

Creates a new label for the specified file.

Parameters

StoreVolumeFileLabel $request

Return Value

Response

at line 63
Response destroy(int $id)

Deletes the specified file label.

Parameters

int $id

Return Value

Response

at line 76
abstract protected string getFileModel()

Get the file model class name.

Return Value

string

at line 83
abstract protected string getFileLabelModel()

Get the file label model class name.

Return Value

string