PluginProbe
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell / 3.13.1
WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell v3.13.1
3.13.1 3.13.0 3.12.13 3.12.12 3.12.11 3.12.10 3.12.9 3.12.8 3.12.7 3.12.6 3.12.5 3.12.4 3.12.3 3.12.1 3.12.2 3.12.0 3.11.1 3.11.0 3.10.9 3.10.8 3.10.7 3.10.6 2.8.16 2.8.17 2.8.18 All 259 releases
wpfunnels / includes / core / data-store / interface-wpfnl-data-store.php

interface-wpfnl-data-store.php in WPFunnels – Funnel Builder for WooCommerce with Checkout & One Click Upsell 3.13.1, at includes/core/data-store/interface-wpfnl-data-store.php

25 lines 369 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Store data
4 *
5 * @package
6 */
7 namespace WPFunnels\Data_Store;
8
9 interface Wpfnl_Data_Store
10 {
11 public function set_id($id);
12
13 public function create();
14
15 public function read($id);
16
17 public function delete($id);
18
19 public function get_meta($id, $key);
20
21 public function update_meta($id, $key, $value);
22
23 public function delete_meta();
24 }
25