├── .gitignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bin └── install-wp-tests.sh ├── bower.json ├── composer.json ├── ingot-premium.php ├── ingot.php ├── ingot_bootstrap.php ├── languages └── ingot.pot ├── package.json ├── phpunit.xml ├── readme.txt ├── releases ├── ingot-0.1.0.zip ├── ingot-0.1.1.zip ├── ingot-0.1.2.zip ├── ingot-0.2.0.1.zip ├── ingot-0.2.0.zip ├── ingot-0.2.1.zip ├── ingot-0.2.2.zip ├── ingot-0.3.0.zip ├── ingot-0.4.0.zip ├── ingot-1.0.0.zip ├── ingot-1.0.1.zip ├── ingot-1.0.2.zip ├── ingot-1.1.0-b-1.zip ├── ingot-1.1.0-b-2.zip ├── ingot-1.1.0-b-3.zip ├── ingot-1.1.0.zip ├── ingot-1.1.1-b-1.zip ├── ingot-1.1.1-b-2.zip ├── ingot-1.2.0.zip ├── ingot-1.3.0.zip ├── ingot-1.3.1.1.zip ├── ingot-1.3.1.zip ├── ingot-1.3.2-b-1.zip ├── ingot-1.3.2-b-2.zip ├── ingot-1.3.2-b-3.zip ├── ingot-1.3.2-b-4.zip └── ingot-1.3.2.zip ├── tests ├── README.md ├── api │ ├── rest-test-case.php │ ├── tests-group_api.php │ ├── tests-products.php │ └── tests-settings.php ├── bootstrap.php ├── crud │ ├── tests-defaults.php │ ├── tests-group_crud.php │ ├── tests-session_crud.php │ ├── tests-settings_crud.php │ ├── tests-tracking.php │ └── tests-variants.php ├── functions_for_tests.php ├── objects │ ├── tests-group-object.php │ ├── tests-posts-by-group.php │ └── tests-price-test.php ├── price │ ├── tests-active-check.php │ ├── tests-price-cookie.php │ ├── tests-price-edd.php │ ├── tests-price-queries.php │ └── tests-price_util.php ├── tests-array-filters.php ├── tests-color_helpers.php ├── tests-cookie-setup.php ├── tests-db.php ├── tests-destination-cookies.php ├── tests-destination-tracking.php ├── tests-destination-utility.php ├── tests-functions.php ├── tests-tests.php └── tests-ui.php └── vendor └── autoload.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/README.md -------------------------------------------------------------------------------- /bin/install-wp-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/bin/install-wp-tests.sh -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/composer.json -------------------------------------------------------------------------------- /ingot-premium.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/ingot-premium.php -------------------------------------------------------------------------------- /ingot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/ingot.php -------------------------------------------------------------------------------- /ingot_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/ingot_bootstrap.php -------------------------------------------------------------------------------- /languages/ingot.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/languages/ingot.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/phpunit.xml -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/readme.txt -------------------------------------------------------------------------------- /releases/ingot-0.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.1.0.zip -------------------------------------------------------------------------------- /releases/ingot-0.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.1.1.zip -------------------------------------------------------------------------------- /releases/ingot-0.1.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.1.2.zip -------------------------------------------------------------------------------- /releases/ingot-0.2.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.2.0.1.zip -------------------------------------------------------------------------------- /releases/ingot-0.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.2.0.zip -------------------------------------------------------------------------------- /releases/ingot-0.2.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.2.1.zip -------------------------------------------------------------------------------- /releases/ingot-0.2.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.2.2.zip -------------------------------------------------------------------------------- /releases/ingot-0.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.3.0.zip -------------------------------------------------------------------------------- /releases/ingot-0.4.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-0.4.0.zip -------------------------------------------------------------------------------- /releases/ingot-1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.0.0.zip -------------------------------------------------------------------------------- /releases/ingot-1.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.0.1.zip -------------------------------------------------------------------------------- /releases/ingot-1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.0.2.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.0-b-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.0-b-1.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.0-b-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.0-b-2.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.0-b-3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.0-b-3.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.0.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.1-b-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.1-b-1.zip -------------------------------------------------------------------------------- /releases/ingot-1.1.1-b-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.1.1-b-2.zip -------------------------------------------------------------------------------- /releases/ingot-1.2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.2.0.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.0.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.1.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.1.1.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.1.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.2-b-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.2-b-1.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.2-b-2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.2-b-2.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.2-b-3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.2-b-3.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.2-b-4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.2-b-4.zip -------------------------------------------------------------------------------- /releases/ingot-1.3.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/releases/ingot-1.3.2.zip -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/api/rest-test-case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/api/rest-test-case.php -------------------------------------------------------------------------------- /tests/api/tests-group_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/api/tests-group_api.php -------------------------------------------------------------------------------- /tests/api/tests-products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/api/tests-products.php -------------------------------------------------------------------------------- /tests/api/tests-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/api/tests-settings.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/crud/tests-defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-defaults.php -------------------------------------------------------------------------------- /tests/crud/tests-group_crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-group_crud.php -------------------------------------------------------------------------------- /tests/crud/tests-session_crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-session_crud.php -------------------------------------------------------------------------------- /tests/crud/tests-settings_crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-settings_crud.php -------------------------------------------------------------------------------- /tests/crud/tests-tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-tracking.php -------------------------------------------------------------------------------- /tests/crud/tests-variants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/crud/tests-variants.php -------------------------------------------------------------------------------- /tests/functions_for_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/functions_for_tests.php -------------------------------------------------------------------------------- /tests/objects/tests-group-object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/objects/tests-group-object.php -------------------------------------------------------------------------------- /tests/objects/tests-posts-by-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/objects/tests-posts-by-group.php -------------------------------------------------------------------------------- /tests/objects/tests-price-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/objects/tests-price-test.php -------------------------------------------------------------------------------- /tests/price/tests-active-check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/price/tests-active-check.php -------------------------------------------------------------------------------- /tests/price/tests-price-cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/price/tests-price-cookie.php -------------------------------------------------------------------------------- /tests/price/tests-price-edd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/price/tests-price-edd.php -------------------------------------------------------------------------------- /tests/price/tests-price-queries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/price/tests-price-queries.php -------------------------------------------------------------------------------- /tests/price/tests-price_util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/price/tests-price_util.php -------------------------------------------------------------------------------- /tests/tests-array-filters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-array-filters.php -------------------------------------------------------------------------------- /tests/tests-color_helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-color_helpers.php -------------------------------------------------------------------------------- /tests/tests-cookie-setup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-cookie-setup.php -------------------------------------------------------------------------------- /tests/tests-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-db.php -------------------------------------------------------------------------------- /tests/tests-destination-cookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-destination-cookies.php -------------------------------------------------------------------------------- /tests/tests-destination-tracking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-destination-tracking.php -------------------------------------------------------------------------------- /tests/tests-destination-utility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-destination-utility.php -------------------------------------------------------------------------------- /tests/tests-functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-functions.php -------------------------------------------------------------------------------- /tests/tests-tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-tests.php -------------------------------------------------------------------------------- /tests/tests-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/tests/tests-ui.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ingothq/ingot/HEAD/vendor/autoload.php --------------------------------------------------------------------------------