This commit is contained in:
2024-01-19 12:03:02 +07:00
parent 8c5660d739
commit 6c02598c48
17 changed files with 1062 additions and 9 deletions

View File

@@ -0,0 +1,75 @@
<?php
return array(
'enable' => true ,
"name" => "Khách hàng",
"url" => "",
"menu" => array(
array(
'enable' => true ,
'module' => 'customer',
'view' => 'home',
'id' => 'customer/home',
'name' => 'Danh sách khách hàng',
'url' => '/admin/?opt=customer',
),
/*array(
'enable' => true ,
'module' => 'customer',
'view' => 'customer-group',
'id' => 'customer/customer-group',
'name' => 'Nhóm khách hàng',
'url' => '/admin/?opt=customer&view=customer-group',
),*/
array(
'enable' => true ,
'module' => 'customer',
'view' => 'customer-contact',
'id' => 'customer/customer-contact',
'name' => 'Khách hàng liên hệ',
'url' => '/admin/?opt=customer&view=customer-contact',
),
array(
'enable' => true ,
'module' => 'customer',
'view' => 'comment',
'id' => 'customer/comment',
'name' => 'Tổng hợp trao đổi',
'url' => '/admin/?opt=customer&view=comment',
),
array(
'enable' => true ,
'module' => 'customer',
'view' => 'review',
'id' => 'customer/review',
'name' => 'Tổng hợp Đánh giá',
'url' => '/admin/?opt=customer&view=review',
),
array(
'enable' => true ,
'module' => 'customer',
'view' => 'customer-review',
'id' => 'customer/customer-review',
'name' => 'Khách hàng góp ý',
'url' => '/admin/?opt=customer&view=customer-review',
),
array(
'enable' => true ,
'module' => 'customer',
'view' => 'customer-newsletter',
'id' => 'customer/customer-newsletter',
'name' => 'Khách hàng nhận bản tin',
'url' => '/admin/?opt=customer&view=customer-newsletter',
),
),
);