├── .gitignore ├── latest.txt ├── module.php ├── readme.md └── resources ├── css └── vytux_cousins.css └── views └── tab.phtml /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ -------------------------------------------------------------------------------- /latest.txt: -------------------------------------------------------------------------------- 1 | 2.1.1 2 | -------------------------------------------------------------------------------- /module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vytux-com/vytux_cousins/HEAD/module.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vytux-com/vytux_cousins/HEAD/readme.md -------------------------------------------------------------------------------- /resources/css/vytux_cousins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vytux-com/vytux_cousins/HEAD/resources/css/vytux_cousins.css -------------------------------------------------------------------------------- /resources/views/tab.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vytux-com/vytux_cousins/HEAD/resources/views/tab.phtml --------------------------------------------------------------------------------