Browse
For agents
About
AliNext – WooCommerce Dropshipping Plugin for AliExpress
/
trunk
AliNext – WooCommerce Dropshipping Plugin for AliExpress
vtrunk
Overview
Code
ali2woo-lite
/
includes
/
classes
/
service
/
AssetService.php
AssetService.php
in AliNext – WooCommerce Dropshipping Plugin for AliExpress trunk, at includes/classes/service/AssetService.php
25 lines
420 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
3
/**
4
* Description of AssetService
5
*
6
*
@author
Ali2Woo Team
7
*/
8
9
namespace
AliNext_Lite
;
;
10
11
class
AssetService
12
{
13
private
ApiClient
$
ApiClient
;
14
15
public
function
__construct
(
ApiClient
$
ApiClient
)
16
{
17
$
this
->
ApiClient
=
$
ApiClient
;
18
}
19
20
public
function
getLogoUrl
(
string
$
file
)
:
string
21
{
22
return
$
this
->
ApiClient
->
assetUrl
(
$
file
,
A2WL
(
)
->
version
)
;
23
}
24
}
25