class ImageAnnotationController 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(Request $request, int $id)

Shows a list of all annotations of the specified image.

show(int $id)

Displays the annotation.

store(StoreImageAnnotation $request)

Creates a new annotation in the specified image.

Response
update(Request $request, int $id)

Updates the annotation including its points.

Response
destroy(int $id)

Removes the annotation.

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 65
Response index(Request $request, int $id)

Shows a list of all annotations of the specified image.

Parameters

Request $request
int $id

image id

Return Value

Response

at line 129
ImageAnnotation show(int $id)

Displays the annotation.

Parameters

int $id

Return Value

ImageAnnotation

at line 200
ImageAnnotation store(StoreImageAnnotation $request)

Creates a new annotation in the specified image.

Parameters

StoreImageAnnotation $request

Return Value

ImageAnnotation

at line 271
Response update(Request $request, int $id)

Updates the annotation including its points.

Parameters

Request $request
int $id

Return Value

Response

at line 317
Response destroy(int $id)

Removes the annotation.

Parameters

int $id

Return Value

Response