handle delivery schedule dates

This commit is contained in:
Bilal Catic
2018-10-31 12:48:45 +01:00
parent e6b6f6c136
commit d6c5a36e94
8 changed files with 612 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
<?php
defined( 'ABSPATH' ) || exit;
/**
* Class Wiaas_Supplier
*/
class Wiaas_Supplier {
public static function get_name($supplier_id){
return wiaas_get_organization_name($supplier_id) ?: 'Unknown';
}
}