関数
RedirectRouteGuards::cartNotEmptyOrExit()
戻り値 戻り値
ファイル: src/Routing/RedirectRouteGuards.php
49 50 51 52 53 54 55 56 57 | public function cartNotEmptyOrExit() { return function () { $cartCheck = $this ->restRouteGuards->cartNotEmptyCheck(); if (! empty ( $cartCheck ())) { header( 'location: ' . get_option( 'home' )); exit (); } }; } |