26 lines
578 B
PHP
26 lines
578 B
PHP
<?php
|
|
/**
|
|
* product.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author Edward Yang <yangjin@opencart.cn>
|
|
* @created 2022-08-02 14:22:41
|
|
* @modified 2022-08-02 14:22:41
|
|
*/
|
|
|
|
return [
|
|
'name' => 'Name',
|
|
'sku' => 'SKU',
|
|
'price' => 'Price',
|
|
'brand' => 'Brand',
|
|
'category' => 'Category',
|
|
'model' => 'Model',
|
|
'quantity' => 'Quantity',
|
|
'image' => 'Image',
|
|
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'has_been_inactive' => 'The product has been inactive',
|
|
];
|