File "class-wc-object-data-store-interface.php"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/includes/interfaces/class-wc-object-data-store-interface.php
File size: 390 B
MIME-type: text/x-php
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

<?php

interface WC_Object_Data_Store_Interface
{
    public function create(&$data);
    public function read(&$data);
    public function update(&$data);
    public function delete(&$data, $args = array());
    public function read_meta(&$data);
    public function delete_meta(&$data, $meta);
    public function add_meta(&$data, $meta);
    public function update_meta(&$data, $meta);
}