0

我正在构建一个自定义 opencart 支付扩展(ocmod 可安装),我需要使用外部支付提供商 sdk(位于供应商文件夹中),但我不知道如何将这些文件包含在我的打包扩展中

这是我的文件夹结构

..
├── install.xml
└── upload
    ├── admin
    ├── catalog
    ├── composer.json 
    ├── image
    └── vendor
4

1 回答 1

0

要为 opencart 开发付款扩展,请遵循此结构

admin
│   ├── controller
│   │   ├── payment
│   │   │   ├── custom_payment.php
language
│   │   └── en-GB
│   │       ├── payment
│   │       │   ├── custom_payment.php
template
├── payment
│   ├── custom_payment.tpl


catalog/
├── controller
│   ├── payment
│   │   ├── custom_payment.php
├── language
│   └── en-GB
│       ├── payment
│       │   ├── custom_payment.php
├── model
│   ├── payment
│   │   ├── custom_payment.php
└── view
    └── theme
        ├── default / your_theme
        │   └── template
                ├── payment
                │   ├── custom_payment.tpl
于 2017-05-08T10:37:52.610 回答