├── .gitignore ├── Config └── shopify.php ├── Controller ├── Component │ ├── CurlComponent.php │ ├── ShopifyAPIComponent.php │ └── ShopifyAuthComponent.php └── InstallController.php ├── LICENSE ├── README.md └── View ├── Elements └── install_form.ctp └── Install └── index.ctp /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Config/shopify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/Config/shopify.php -------------------------------------------------------------------------------- /Controller/Component/CurlComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/Controller/Component/CurlComponent.php -------------------------------------------------------------------------------- /Controller/Component/ShopifyAPIComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/Controller/Component/ShopifyAPIComponent.php -------------------------------------------------------------------------------- /Controller/Component/ShopifyAuthComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/Controller/Component/ShopifyAuthComponent.php -------------------------------------------------------------------------------- /Controller/InstallController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/Controller/InstallController.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /View/Elements/install_form.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/View/Elements/install_form.ctp -------------------------------------------------------------------------------- /View/Install/index.ctp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmcdonaldca/CakePHP-Shopify-Plugin/HEAD/View/Install/index.ctp --------------------------------------------------------------------------------