├── .github └── workflows │ └── build.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── icon.png ├── images └── KygekTagsShop.png ├── plugin.yml ├── resources ├── config.yml ├── lang │ ├── de.yml │ ├── en.yml │ ├── es.yml │ ├── fr.yml │ ├── id.yml │ ├── ro.yml │ ├── ru.yml │ ├── tr.yml │ └── vi.yml ├── mysql.sql └── sqlite.sql └── src └── Kygekraqmak └── KygekTagsShop ├── Commands.php ├── TagsActions.php ├── TagsShop.php ├── event ├── TagBuyEvent.php ├── TagEvent.php └── TagSellEvent.php ├── form ├── BuyForm.php ├── MenuForm.php └── SellForm.php └── utils └── Replace.php /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/composer.lock -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/icon.png -------------------------------------------------------------------------------- /images/KygekTagsShop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/images/KygekTagsShop.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/lang/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/de.yml -------------------------------------------------------------------------------- /resources/lang/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/en.yml -------------------------------------------------------------------------------- /resources/lang/es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/es.yml -------------------------------------------------------------------------------- /resources/lang/fr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/fr.yml -------------------------------------------------------------------------------- /resources/lang/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/id.yml -------------------------------------------------------------------------------- /resources/lang/ro.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/ro.yml -------------------------------------------------------------------------------- /resources/lang/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/ru.yml -------------------------------------------------------------------------------- /resources/lang/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/tr.yml -------------------------------------------------------------------------------- /resources/lang/vi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/lang/vi.yml -------------------------------------------------------------------------------- /resources/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/mysql.sql -------------------------------------------------------------------------------- /resources/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/resources/sqlite.sql -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/Commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/Commands.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/TagsActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/TagsActions.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/TagsShop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/TagsShop.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/event/TagBuyEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/event/TagBuyEvent.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/event/TagEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/event/TagEvent.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/event/TagSellEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/event/TagSellEvent.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/form/BuyForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/form/BuyForm.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/form/MenuForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/form/MenuForm.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/form/SellForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/form/SellForm.php -------------------------------------------------------------------------------- /src/Kygekraqmak/KygekTagsShop/utils/Replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebigcrafter/KygekTagsShop/HEAD/src/Kygekraqmak/KygekTagsShop/utils/Replace.php --------------------------------------------------------------------------------