Created
March 28, 2017 09:40
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├── app | |
│ ├── code | |
│ │ └── local | |
│ │ └── ShineSoftware | |
│ │ └── Bancasella | |
│ │ ├── Block | |
│ │ │ ├── Adminhtml | |
│ │ │ │ ├── Bancasella | |
│ │ │ │ │ ├── Edit | |
│ │ │ │ │ │ ├── Form.php | |
│ │ │ │ │ │ ├── Tab | |
│ │ │ │ │ │ │ └── Form.php | |
│ │ │ │ │ │ └── Tabs.php | |
│ │ │ │ │ ├── Edit.php | |
│ │ │ │ │ └── Grid.php | |
│ │ │ │ ├── Bancasella.php | |
│ │ │ │ ├── Mybank | |
│ │ │ │ │ ├── Edit | |
│ │ │ │ │ │ ├── Form.php | |
│ │ │ │ │ │ ├── Tab | |
│ │ │ │ │ │ │ └── Form.php | |
│ │ │ │ │ │ └── Tabs.php | |
│ │ │ │ │ ├── Edit.php | |
│ │ │ │ │ └── Grid.php | |
│ │ │ │ ├── Mybank.php | |
│ │ │ │ └── System | |
│ │ │ │ └── Config | |
│ │ │ │ └── Form | |
│ │ │ │ └── Button.php | |
│ │ │ ├── Bancasella.php | |
│ │ │ ├── Beacon.php | |
│ │ │ ├── Cc.php | |
│ │ │ ├── Creditcards.php | |
│ │ │ ├── Form | |
│ │ │ │ └── Cc.php | |
│ │ │ ├── Form.php | |
│ │ │ └── Redirect.php | |
│ │ ├── controllers | |
│ │ │ ├── Adminhtml | |
│ │ │ │ ├── AjaxController.php | |
│ │ │ │ ├── BancasellaController.php | |
│ │ │ │ └── MybankController.php | |
│ │ │ ├── AjaxController.php | |
│ │ │ ├── CreditcardsController.php | |
│ │ │ └── IndexController.php | |
│ │ ├── etc | |
│ │ │ ├── config.xml | |
│ │ │ └── system.xml | |
│ │ ├── Helper | |
│ │ │ ├── Crypt.php | |
│ │ │ └── Data.php | |
│ │ ├── Model | |
│ │ │ ├── Attributes.php | |
│ │ │ ├── Bancasella.php | |
│ │ │ ├── Config | |
│ │ │ │ ├── Currencies.php | |
│ │ │ │ ├── Customers.php | |
│ │ │ │ ├── Gateway.php | |
│ │ │ │ ├── Mode.php | |
│ │ │ │ ├── Months.php | |
│ │ │ │ ├── Status.php | |
│ │ │ │ ├── Templates.php | |
│ │ │ │ ├── Timeout.php | |
│ │ │ │ └── Years.php | |
│ │ │ ├── Cron.php | |
│ │ │ ├── Method | |
│ │ │ │ └── Cc.php | |
│ │ │ ├── Mybank.php | |
│ │ │ ├── Mysql4 | |
│ │ │ │ ├── Bancasella | |
│ │ │ │ │ └── Collection.php | |
│ │ │ │ ├── Bancasella.php | |
│ │ │ │ ├── Mybank | |
│ │ │ │ │ └── Collection.php | |
│ │ │ │ ├── Mybank.php | |
│ │ │ │ └── Response.php | |
│ │ │ ├── Observer.php | |
│ │ │ ├── Payment.php | |
│ │ │ ├── Request.php | |
│ │ │ ├── Response.php | |
│ │ │ ├── Responses.php | |
│ │ │ ├── Riskified.php | |
│ │ │ ├── Sales | |
│ │ │ │ └── Order | |
│ │ │ │ └── Payment.php | |
│ │ │ ├── Session.php | |
│ │ │ ├── Util.php | |
│ │ │ └── Webservice | |
│ │ │ ├── Abstract.php | |
│ │ │ └── Wscryptdecrypt.php | |
│ │ └── sql | |
│ │ └── bancasella_setup | |
│ │ ├── mysql4-install-0.1.0.php | |
│ │ ├── mysql4-upgrade-0.1.0-0.2.0.php | |
│ │ └── mysql4-upgrade-1.1.3-1.1.4.php | |
│ ├── design | |
│ │ ├── adminhtml | |
│ │ │ └── default | |
│ │ │ └── default | |
│ │ │ ├── layout | |
│ │ │ │ └── bancasella.xml | |
│ │ │ └── template | |
│ │ │ └── bancasella | |
│ │ │ ├── form | |
│ │ │ │ └── cc.phtml | |
│ │ │ ├── payment | |
│ │ │ │ └── info | |
│ │ │ │ └── bancasella.phtml | |
│ │ │ └── system | |
│ │ │ └── config | |
│ │ │ └── button.phtml | |
│ │ └── frontend | |
│ │ └── base | |
│ │ └── default | |
│ │ ├── layout | |
│ │ │ ├── bancasella.xml | |
│ │ │ └── bancasella.xml~ | |
│ │ └── template | |
│ │ └── bancasella | |
│ │ ├── beacon.phtml | |
│ │ ├── creditcards | |
│ │ │ ├── confirm.phtml | |
│ │ │ └── view.phtml | |
│ │ └── form | |
│ │ └── cc.phtml | |
│ ├── etc | |
│ │ └── modules | |
│ │ └── ShineSoftware_Bancasella.xml | |
│ └── locale | |
│ └── it_IT | |
│ └── ShineSoftware_Bancasella.csv | |
├── files.txt | |
├── js | |
│ └── shinesoftware | |
│ └── bancasella | |
│ └── bancasella.js | |
├── Presentazione.pdf | |
└── skin | |
├── adminhtml | |
│ └── default | |
│ └── default | |
│ ├── bancasella.css | |
│ └── images | |
│ └── creditcard | |
│ ├── AE.png | |
│ ├── MC.png | |
│ ├── mybank.png | |
│ └── VI.png | |
└── frontend | |
└── base | |
└── default | |
├── css | |
│ └── bancasella.css | |
└── images | |
└── creditcard | |
├── AE.png | |
├── MC.png | |
├── mybank.png | |
└── VI.png | |
71 directories, 88 files |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment