Test controller.
Expanded class hierarchy of TestController
class TestController extends ControllerBase {
/**
* Callback to add given job item into the cart.
*/
function addToCart(JobItemInterface $tmgmt_job_item) {
tmgmt_cart_get()
->addExistingJobItems(array(
$tmgmt_job_item,
));
return new Response('', 204);
}
}
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TestController:: |
function | Callback to add given job item into the cart. |