├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── app ├── code │ └── community │ │ └── LUKA │ │ └── GoogleAdWords │ │ ├── Block │ │ ├── Adminhtml │ │ │ └── Config │ │ │ │ ├── Conversion │ │ │ │ └── Select.php │ │ │ │ └── Conversions.php │ │ └── Conversion.php │ │ ├── Helper │ │ └── Data.php │ │ ├── LICENSE │ │ ├── Model │ │ ├── Config │ │ │ └── Source │ │ │ │ └── Format.php │ │ ├── Conversion.php │ │ └── Conversion │ │ │ └── Collection.php │ │ └── etc │ │ ├── config.xml │ │ └── system.xml ├── design │ ├── adminhtml │ │ └── default │ │ │ └── default │ │ │ └── template │ │ │ └── luka │ │ │ └── google │ │ │ └── adwords │ │ │ └── config │ │ │ └── conversions.phtml │ └── frontend │ │ └── base │ │ └── default │ │ ├── layout │ │ └── luka_googleadwords.xml │ │ └── template │ │ └── luka │ │ └── google │ │ └── adwords │ │ └── conversion.phtml ├── etc │ └── modules │ │ └── LUKA_GoogleAdWords.xml └── locale │ └── de_DE │ └── LUKA_GoogleAdWords.csv ├── composer.json ├── mage.package.xml ├── modman └── pear.package.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/README.md -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Block/Adminhtml/Config/Conversion/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Block/Adminhtml/Config/Conversion/Select.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Block/Adminhtml/Config/Conversions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Block/Adminhtml/Config/Conversions.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Block/Conversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Block/Conversion.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Helper/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Helper/Data.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/LICENSE -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Model/Config/Source/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Model/Config/Source/Format.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Model/Conversion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Model/Conversion.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/Model/Conversion/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/Model/Conversion/Collection.php -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/etc/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/etc/config.xml -------------------------------------------------------------------------------- /app/code/community/LUKA/GoogleAdWords/etc/system.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/code/community/LUKA/GoogleAdWords/etc/system.xml -------------------------------------------------------------------------------- /app/design/adminhtml/default/default/template/luka/google/adwords/config/conversions.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/design/adminhtml/default/default/template/luka/google/adwords/config/conversions.phtml -------------------------------------------------------------------------------- /app/design/frontend/base/default/layout/luka_googleadwords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/design/frontend/base/default/layout/luka_googleadwords.xml -------------------------------------------------------------------------------- /app/design/frontend/base/default/template/luka/google/adwords/conversion.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/design/frontend/base/default/template/luka/google/adwords/conversion.phtml -------------------------------------------------------------------------------- /app/etc/modules/LUKA_GoogleAdWords.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/etc/modules/LUKA_GoogleAdWords.xml -------------------------------------------------------------------------------- /app/locale/de_DE/LUKA_GoogleAdWords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/app/locale/de_DE/LUKA_GoogleAdWords.csv -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/composer.json -------------------------------------------------------------------------------- /mage.package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/mage.package.xml -------------------------------------------------------------------------------- /modman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/modman -------------------------------------------------------------------------------- /pear.package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukanetconsult/mage-google-adwords/HEAD/pear.package.xml --------------------------------------------------------------------------------