c
This commit is contained in:
26
inc/Hura8/Interfaces/iProductPromotionProgram.php
Normal file
26
inc/Hura8/Interfaces/iProductPromotionProgram.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by Glee Ltd.
|
||||
* User: Hieu
|
||||
* Date: 28-Jun-19
|
||||
* Time: 3:26 PM
|
||||
* Description:
|
||||
*/
|
||||
|
||||
namespace Hura8\Interfaces;
|
||||
|
||||
|
||||
interface iProductPromotionProgram
|
||||
{
|
||||
public function activate($id, $status);
|
||||
|
||||
public function updateSetting($id, array $settings);
|
||||
|
||||
public function updateProductSetting($program_id, $product_id, array $settings);
|
||||
|
||||
public function addProduct($program_id, $product_id, array $settings);
|
||||
|
||||
public function removeProduct($program_id, $product_id);
|
||||
|
||||
public function getProductList($program_id);
|
||||
}
|
||||
Reference in New Issue
Block a user