このクラスは非推奨です。
クラス
Handler
Handler for wishlist routes. Holds instance of Wishlist model class.
ソース ソース
ファイル: src/Deprecated/Handler.php
class Handler { /** * Wishlist instance * * @var Wishlist */ public $wishlist; /** * Deprecated * * @author Evan D Shaw <evandanielshaw@gmail.com> */ public function __construct() { $this->wishlist = new Wishlist(); } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function registerActions() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function registerAction() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function router() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function ajaxHandler() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function checkDlsellerItem() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return int */ public function filterCtwQuant() { return 1; } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return int */ public function filterWishlistQuant() { return 1; } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function upButtonWishlist() { } /** * Deprecated. Use CRUD class methods instead. * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function delButtonWishlist() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function batch_dropdown() { } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return false */ public function wishlistRedirect() { return false; } /** * Deprecated * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @return void */ public function loadWishlistPage() { } /** * Deprecated. Use `wcexwl_api_is_wishlist_page()` function instead. * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @param string $link * @return bool */ public function is_wishlist_page($link) { return Utils::isWishlistPage($link); } /** * Deprecated. Use `wcexwl_api_is_wishlist_page()` function instead. * * @deprecated 3.0.0 * @author Evan D Shaw <evandanielshaw@gmail.com> * @param string $link * @return bool */ public static function isWishlistPage($link) { return Utils::isWishlistPage($link); } }
- __construct — Deprecated
- ajaxHandler — Deprecated — 非推奨
- batch_dropdown — Deprecated — 非推奨
- checkDlsellerItem — Deprecated — 非推奨
- delButtonWishlist — Deprecated. Use CRUD class methods instead. — 非推奨
- filterCtwQuant — Deprecated — 非推奨
- filterWishlistQuant — Deprecated — 非推奨
- is_wishlist_page — Deprecated. Use wcexwl_api_is_wishlist_page() function instead. — 非推奨
- isWishlistPage — Deprecated. Use wcexwl_api_is_wishlist_page() function instead. — 非推奨
- loadWishlistPage — Deprecated — 非推奨
- registerAction — Deprecated — 非推奨
- registerActions — Deprecated — 非推奨
- router — Deprecated — 非推奨
- upButtonWishlist — Deprecated — 非推奨
- wishlistRedirect — Deprecated — 非推奨
バージョン | 説明 |
---|---|
3.0.0 | このクラスは非推奨です。 |