/**
  * ACTION /
  * Redirect back to the storefront as /product/ has no content.
  */
 public function index()
 {
     return $this->redirect(Store_Controller::get_link(), 404);
 }
 /**
  * ACTION /continueshopping
  * Return the customer to the store front.
  */
 public function continueshopping($data)
 {
     return $this->redirect(Store_Controller::get_link());
 }