Skip to content

Instantly share code, notes, and snippets.

@shinesoftware
Last active March 17, 2020 10:41
Show Gist options
  • Save shinesoftware/daedf66f417bd08a43c3da3e3e5735f0 to your computer and use it in GitHub Desktop.
Save shinesoftware/daedf66f417bd08a43c3da3e3e5735f0 to your computer and use it in GitHub Desktop.
.
├── app
│   ├── code
│   │   └── community
│   │   └── ShineSoftware
│   │   └── Constriv
│   │   ├── Block
│   │   │   ├── Adminhtml
│   │   │   │   └── System
│   │   │   │   └── Config
│   │   │   │   ├── Editor.php
│   │   │   │   ├── Fieldset
│   │   │   │   │   ├── Expanded.php
│   │   │   │   │   ├── Group.php
│   │   │   │   │   ├── Hint.php
│   │   │   │   │   ├── Location.php
│   │   │   │   │   └── Payment.php
│   │   │   │   └── Form
│   │   │   │   ├── Button.php
│   │   │   │   ├── Clearlog.php
│   │   │   │   ├── Customstyle.php
│   │   │   │   ├── Downloadlog.php
│   │   │   │   ├── Reset.php
│   │   │   │   └── Testrequest.php
│   │   │   ├── Hosted
│   │   │   │   ├── Form.php
│   │   │   │   └── Info.php
│   │   │   └── Moto
│   │   │   ├── Enrolled.php
│   │   │   ├── Form.php
│   │   │   └── Info.php
│   │   ├── controllers
│   │   │   ├── Adminhtml
│   │   │   │   ├── CustomstyleController.php
│   │   │   │   ├── HelpdeskController.php
│   │   │   │   ├── LogController.php
│   │   │   │   └── ToolsController.php
│   │   │   ├── HostedController.php
│   │   │   ├── MainController.php
│   │   │   └── MotoController.php
│   │   ├── etc
│   │   │   ├── config.xml
│   │   │   └── system.xml
│   │   ├── Helper
│   │   │   └── Data.php
│   │   ├── Model
│   │   │   ├── Config
│   │   │   │   ├── Gateway.php
│   │   │   │   └── Templates.php
│   │   │   ├── Config.php
│   │   │   ├── Feed.php
│   │   │   ├── Gateway.php
│   │   │   ├── Gateways
│   │   │   │   ├── Hosted.php
│   │   │   │   └── Moto.php
│   │   │   ├── Mysql4
│   │   │   ├── Observer.php
│   │   │   ├── Resource
│   │   │   │   └── Setup.php
│   │   │   ├── Source
│   │   │   │   ├── Blocks.php
│   │   │   │   ├── Currencies.php
│   │   │   │   ├── Gateway.php
│   │   │   │   ├── Pagetypes.php
│   │   │   │   ├── RequestType.php
│   │   │   │   └── Timeout.php
│   │   │   └── Utils.php
│   │   └── sql
│   │   └── constriv_setup
│   │   └── install-2.0.0.0.php
│   ├── design
│   │   ├── adminhtml
│   │   │   └── default
│   │   │   └── default
│   │   │   ├── layout
│   │   │   │   └── constriv.xml
│   │   │   └── template
│   │   │   └── constriv
│   │   │   ├── hosted
│   │   │   │   ├── form.phtml
│   │   │   │   └── info.phtml
│   │   │   ├── moto
│   │   │   │   ├── form.phtml
│   │   │   │   └── info.phtml
│   │   │   └── system
│   │   │   └── config
│   │   │   ├── fieldset
│   │   │   │   └── hint.phtml
│   │   │   └── form
│   │   │   ├── button.phtml
│   │   │   ├── clearlog.phtml
│   │   │   ├── customstyle.phtml
│   │   │   ├── downloadlog.phtml
│   │   │   ├── reset.phtml
│   │   │   └── testrequest.phtml
│   │   └── frontend
│   │   └── base
│   │   └── default
│   │   ├── layout
│   │   │   └── constriv.xml
│   │   └── template
│   │   └── constriv
│   │   ├── failure.phtml
│   │   ├── hosted
│   │   │   ├── form.phtml
│   │   │   ├── info.phtml
│   │   │   ├── mark.phtml
│   │   │   └── redirect.phtml
│   │   ├── moto
│   │   │   ├── enrolled.phtml
│   │   │   ├── form.phtml
│   │   │   └── info.phtml
│   │   └── success.phtml
│   ├── etc
│   │   └── modules
│   │   └── ShineSoftware_Constriv.xml
│   └── locale
│   └── it_IT
│   ├── ShineSoftware_Constriv.csv
│   └── template
│   └── email
│   └── constriv_helpdesk_email.html
├── consorzio-triveneto.txt
├── js
│   └── shinesoftware
│   └── constriv
│   └── constriv.js
└── skin
├── adminhtml
│   └── default
│   └── default
│   ├── constriv.css
│   ├── constriv.js
│   └── images
│   └── constriv
│   ├── allinone.png
│   ├── logo.png
│   └── mybank.png
└── frontend
└── base
└── default
├── css
│   └── constriv.css
└── images
├── constriv
│   ├── creditcard
│   │   ├── AE.png
│   │   ├── allcards.jpg
│   │   ├── allinone.png
│   │   ├── credit-card.png
│   │   ├── MC.png
│   │   ├── mybank.png
│   │   └── VI.png
│   └── logo.png
└── creditcard
├── AE.png
├── allcards.jpg
├── allinone.png
├── credit-card.png
├── MC.png
├── mybank.png
└── VI.png
.
├── app
│   ├── code
│   │   └── community
│   │   └── ShineSoftware
│   │   └── TrivenetoBanks
│   │   ├── Block
│   │   │   ├── Failure.php
│   │   │   ├── Form.php
│   │   │   ├── Info.php
│   │   │   ├── Processing.php
│   │   │   └── Success.php
│   │   ├── controllers
│   │   │   ├── OnepageController.php
│   │   │   └── ProcessingController.php
│   │   ├── etc
│   │   │   ├── config.xml
│   │   │   └── system.xml
│   │   ├── Helper
│   │   │   └── Data.php
│   │   └── Model
│   │   ├── Cc.php
│   │   ├── Config.php
│   │   ├── Observer.php
│   │   ├── Shared.php
│   │   └── Source
│   │   ├── Currencies.php
│   │   ├── currencies.xml
│   │   ├── Endpoints.php
│   │   ├── Languages.php
│   │   ├── PayAuth.php
│   │   ├── RequestType.php
│   │   ├── Templates.php
│   │   └── TransactionMode.php
│   ├── design
│   │   ├── adminhtml
│   │   │   └── default
│   │   │   └── default
│   │   │   └── template
│   │   │   └── trivenetobanks
│   │   │   ├── info.phtml
│   │   │   └── pdf
│   │   │   └── info.phtml
│   │   └── frontend
│   │   └── base
│   │   └── default
│   │   ├── layout
│   │   │   └── trivenetobanks.xml
│   │   └── template
│   │   └── trivenetobanks
│   │   ├── failure.phtml
│   │   ├── form.phtml
│   │   ├── info.phtml
│   │   ├── items.phtml
│   │   ├── print.phtml
│   │   ├── success.phtml
│   │   ├── summary.phtml
│   │   ├── tax.phtml
│   │   └── totals.phtml
│   ├── etc
│   │   └── modules
│   │   └── ShineSoftware_TrivenetoBanks.xml
│   └── locale
│   └── it_IT
│   └── ShineSoftware_TrivenetoBanks.csv
├── files.txt
├── Presentazione.pdf
└── skin
└── frontend
└── base
└── default
└── css
└── trivenetobanks.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment