App::Cinema::Controller::Item - A controller that handles the movie item's actions.
You can call its actions in any template files either
<form action="[% Catalyst.uri_for('/item/search_do') %]" method="POST">
or
<form action="[% base %]item/search_do" method="POST">
You can also use them in any other controller modules like this:
$c->res->redirect( $c->uri_for('search') );
This is a controller that will handle every action of a movie item.
addThis action is used to add an item.
checkout_doThis action is used to checkout an item.
delete_doThis action is used to delete an item.
detailThis action is used to display the detail of an item.
searchThis action is used to display the result of item search.
search_doThis action is used to search items with or without condition.
Jeff Mo - http://jandc.co.cc/