├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── language-creation.md └── operator-texts.md ├── .poggit.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── logo.png ├── plugin.yml ├── resources ├── config.yml ├── cz.yml ├── de.yml ├── en.yml ├── id.yml ├── ru.yml ├── sk.yml ├── sp.yml ├── tr.yml └── ua.yml └── src └── WolfDen133 └── WFT ├── API ├── TextActions.php └── TextManager.php ├── Command └── WFTCommand.php ├── Event └── TagReplaceEvent.php ├── EventListener.php ├── Exception └── WFTException.php ├── Form ├── Form.php ├── FormManager.php └── Types │ ├── CreationForm.php │ ├── EditForm.php │ └── ListForm.php ├── Lang ├── Language.php └── LanguageManager.php ├── Task └── UpdateTask.php ├── Texts ├── FloatingText.php └── SubText.php ├── Utils ├── Time.php └── Utils.php └── WFT.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/language-creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/.github/ISSUE_TEMPLATE/language-creation.md -------------------------------------------------------------------------------- /.github/operator-texts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/.github/operator-texts.md -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/composer.lock -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/logo.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/cz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/cz.yml -------------------------------------------------------------------------------- /resources/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/de.yml -------------------------------------------------------------------------------- /resources/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/en.yml -------------------------------------------------------------------------------- /resources/id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/id.yml -------------------------------------------------------------------------------- /resources/ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/ru.yml -------------------------------------------------------------------------------- /resources/sk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/sk.yml -------------------------------------------------------------------------------- /resources/sp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/sp.yml -------------------------------------------------------------------------------- /resources/tr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/tr.yml -------------------------------------------------------------------------------- /resources/ua.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/resources/ua.yml -------------------------------------------------------------------------------- /src/WolfDen133/WFT/API/TextActions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/API/TextActions.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/API/TextManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/API/TextManager.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Command/WFTCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Command/WFTCommand.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Event/TagReplaceEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Event/TagReplaceEvent.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/EventListener.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Exception/WFTException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Exception/WFTException.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Form/Form.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Form/FormManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Form/FormManager.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Form/Types/CreationForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Form/Types/CreationForm.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Form/Types/EditForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Form/Types/EditForm.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Form/Types/ListForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Form/Types/ListForm.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Lang/Language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Lang/Language.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Lang/LanguageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Lang/LanguageManager.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Task/UpdateTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Task/UpdateTask.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Texts/FloatingText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Texts/FloatingText.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Texts/SubText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Texts/SubText.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Utils/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Utils/Time.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/Utils/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/Utils/Utils.php -------------------------------------------------------------------------------- /src/WolfDen133/WFT/WFT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WolfDen133/WFT/HEAD/src/WolfDen133/WFT/WFT.php --------------------------------------------------------------------------------