PHP Class Components\MediaManager\Controllers\Backend\MediaManagerController

Inheritance: extends Backend\AdminController
Mostra file Open project: doptor/doptor

Public Methods

Method Description
__construct ( )
create_folder ( )
destroy ( integer $id = null ) : Response Remove the specified media_entry from storage.
edit ( integer $id ) : Response Show the form for editing the specified media_entry.
folder_contents ( )
index ( ) : Response Show the form for creating a new media_entry.
show ( integer $id ) : Response Display the specified media_entry.
store ( ) : Response Store a newly created media_entry in storage.
update ( integer $id ) : Response Update the specified media_entry in storage.

Method Details

__construct() public method

public __construct ( )

create_folder() public method

public create_folder ( )

destroy() public method

Remove the specified media_entry from storage.
public destroy ( integer $id = null ) : Response
$id integer
return Response

edit() public method

Show the form for editing the specified media_entry.
public edit ( integer $id ) : Response
$id integer
return Response

folder_contents() public method

public folder_contents ( )

index() public method

Show the form for creating a new media_entry.
public index ( ) : Response
return Response

show() public method

Display the specified media_entry.
public show ( integer $id ) : Response
$id integer
return Response

store() public method

Store a newly created media_entry in storage.
public store ( ) : Response
return Response

update() public method

Update the specified media_entry in storage.
public update ( integer $id ) : Response
$id integer
return Response