├── .gitignore ├── Makefile ├── README.md ├── composer.json ├── docs ├── assets │ ├── core-install.gif │ └── screen-demo.gif └── examples │ ├── Product.php │ ├── _form.php │ ├── add_product_category_migration.php │ └── fancytree-custom-styles.css └── src ├── Installer.php ├── Module.php ├── assets ├── CategoryTreeAsset.php └── category │ ├── jquery.mjs.nestedSortable.js │ ├── tree.css │ └── tree.js ├── controllers ├── DefaultController.php └── admin │ └── DefaultController.php ├── helpers ├── Fancytree.php └── Helper.php ├── messages ├── ar │ ├── app.php │ └── category.php ├── az │ ├── app.php │ └── category.php ├── bg │ ├── app.php │ └── category.php ├── bs │ ├── app.php │ └── category.php ├── ca │ ├── app.php │ └── category.php ├── cs │ ├── app.php │ └── category.php ├── da │ ├── app.php │ └── category.php ├── de │ ├── app.php │ └── category.php ├── el │ ├── app.php │ └── category.php ├── es │ ├── app.php │ └── category.php ├── et │ ├── app.php │ └── category.php ├── fa │ ├── app.php │ └── category.php ├── fi │ ├── app.php │ └── category.php ├── fr │ ├── app.php │ └── category.php ├── he │ ├── app.php │ └── category.php ├── hr │ ├── app.php │ └── category.php ├── hu │ ├── app.php │ └── category.php ├── id │ ├── app.php │ └── category.php ├── it │ ├── app.php │ └── category.php ├── ja │ ├── app.php │ └── category.php ├── ka │ ├── app.php │ └── category.php ├── kk │ ├── app.php │ └── category.php ├── ko │ ├── app.php │ └── category.php ├── lt │ ├── app.php │ └── category.php ├── lv │ ├── app.php │ └── category.php ├── message.php ├── ms │ ├── app.php │ └── category.php ├── nb-NO │ ├── app.php │ └── category.php ├── nl │ ├── app.php │ └── category.php ├── pl │ ├── app.php │ └── category.php ├── pt-BR │ ├── app.php │ └── category.php ├── pt │ ├── app.php │ └── category.php ├── ro │ ├── app.php │ └── category.php ├── ru │ ├── app.php │ └── category.php ├── sk │ ├── app.php │ └── category.php ├── sl │ ├── app.php │ └── category.php ├── sr-Latn │ ├── app.php │ └── category.php ├── sr │ ├── app.php │ └── category.php ├── sv │ ├── app.php │ └── category.php ├── th │ ├── app.php │ └── category.php ├── tj │ ├── app.php │ └── category.php ├── uk │ ├── app.php │ └── category.php ├── vi │ ├── app.php │ └── category.php ├── zh-CN │ ├── app.php │ └── category.php └── zh-TW │ ├── app.php │ └── category.php ├── migrations └── m160329_210118_create_categories_tables.php ├── migrations_ns └── M160329210118Create_categories_tables.php ├── models ├── Category.php ├── CategoryClosure.php └── CategoryQuery.php └── views ├── admin └── default │ ├── _form.php │ ├── _item.php │ ├── create.php │ ├── index.php │ └── update.php └── default ├── _item.php ├── index.php └── view.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | 3 | .idea/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/composer.json -------------------------------------------------------------------------------- /docs/assets/core-install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/assets/core-install.gif -------------------------------------------------------------------------------- /docs/assets/screen-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/assets/screen-demo.gif -------------------------------------------------------------------------------- /docs/examples/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/examples/Product.php -------------------------------------------------------------------------------- /docs/examples/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/examples/_form.php -------------------------------------------------------------------------------- /docs/examples/add_product_category_migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/examples/add_product_category_migration.php -------------------------------------------------------------------------------- /docs/examples/fancytree-custom-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/docs/examples/fancytree-custom-styles.css -------------------------------------------------------------------------------- /src/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/Installer.php -------------------------------------------------------------------------------- /src/Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/Module.php -------------------------------------------------------------------------------- /src/assets/CategoryTreeAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/assets/CategoryTreeAsset.php -------------------------------------------------------------------------------- /src/assets/category/jquery.mjs.nestedSortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/assets/category/jquery.mjs.nestedSortable.js -------------------------------------------------------------------------------- /src/assets/category/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/assets/category/tree.css -------------------------------------------------------------------------------- /src/assets/category/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/assets/category/tree.js -------------------------------------------------------------------------------- /src/controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/controllers/DefaultController.php -------------------------------------------------------------------------------- /src/controllers/admin/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/controllers/admin/DefaultController.php -------------------------------------------------------------------------------- /src/helpers/Fancytree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/helpers/Fancytree.php -------------------------------------------------------------------------------- /src/helpers/Helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/helpers/Helper.php -------------------------------------------------------------------------------- /src/messages/ar/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ar/app.php -------------------------------------------------------------------------------- /src/messages/ar/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ar/category.php -------------------------------------------------------------------------------- /src/messages/az/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/az/app.php -------------------------------------------------------------------------------- /src/messages/az/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/az/category.php -------------------------------------------------------------------------------- /src/messages/bg/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/bg/app.php -------------------------------------------------------------------------------- /src/messages/bg/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/bg/category.php -------------------------------------------------------------------------------- /src/messages/bs/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/bs/app.php -------------------------------------------------------------------------------- /src/messages/bs/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/bs/category.php -------------------------------------------------------------------------------- /src/messages/ca/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ca/app.php -------------------------------------------------------------------------------- /src/messages/ca/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ca/category.php -------------------------------------------------------------------------------- /src/messages/cs/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/cs/app.php -------------------------------------------------------------------------------- /src/messages/cs/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/cs/category.php -------------------------------------------------------------------------------- /src/messages/da/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/da/app.php -------------------------------------------------------------------------------- /src/messages/da/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/da/category.php -------------------------------------------------------------------------------- /src/messages/de/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/de/app.php -------------------------------------------------------------------------------- /src/messages/de/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/de/category.php -------------------------------------------------------------------------------- /src/messages/el/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/el/app.php -------------------------------------------------------------------------------- /src/messages/el/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/el/category.php -------------------------------------------------------------------------------- /src/messages/es/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/es/app.php -------------------------------------------------------------------------------- /src/messages/es/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/es/category.php -------------------------------------------------------------------------------- /src/messages/et/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/et/app.php -------------------------------------------------------------------------------- /src/messages/et/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/et/category.php -------------------------------------------------------------------------------- /src/messages/fa/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fa/app.php -------------------------------------------------------------------------------- /src/messages/fa/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fa/category.php -------------------------------------------------------------------------------- /src/messages/fi/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fi/app.php -------------------------------------------------------------------------------- /src/messages/fi/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fi/category.php -------------------------------------------------------------------------------- /src/messages/fr/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fr/app.php -------------------------------------------------------------------------------- /src/messages/fr/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/fr/category.php -------------------------------------------------------------------------------- /src/messages/he/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/he/app.php -------------------------------------------------------------------------------- /src/messages/he/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/he/category.php -------------------------------------------------------------------------------- /src/messages/hr/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/hr/app.php -------------------------------------------------------------------------------- /src/messages/hr/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/hr/category.php -------------------------------------------------------------------------------- /src/messages/hu/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/hu/app.php -------------------------------------------------------------------------------- /src/messages/hu/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/hu/category.php -------------------------------------------------------------------------------- /src/messages/id/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/id/app.php -------------------------------------------------------------------------------- /src/messages/id/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/id/category.php -------------------------------------------------------------------------------- /src/messages/it/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/it/app.php -------------------------------------------------------------------------------- /src/messages/it/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/it/category.php -------------------------------------------------------------------------------- /src/messages/ja/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ja/app.php -------------------------------------------------------------------------------- /src/messages/ja/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ja/category.php -------------------------------------------------------------------------------- /src/messages/ka/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ka/app.php -------------------------------------------------------------------------------- /src/messages/ka/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ka/category.php -------------------------------------------------------------------------------- /src/messages/kk/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/kk/app.php -------------------------------------------------------------------------------- /src/messages/kk/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/kk/category.php -------------------------------------------------------------------------------- /src/messages/ko/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ko/app.php -------------------------------------------------------------------------------- /src/messages/ko/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ko/category.php -------------------------------------------------------------------------------- /src/messages/lt/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/lt/app.php -------------------------------------------------------------------------------- /src/messages/lt/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/lt/category.php -------------------------------------------------------------------------------- /src/messages/lv/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/lv/app.php -------------------------------------------------------------------------------- /src/messages/lv/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/lv/category.php -------------------------------------------------------------------------------- /src/messages/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/message.php -------------------------------------------------------------------------------- /src/messages/ms/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ms/app.php -------------------------------------------------------------------------------- /src/messages/ms/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ms/category.php -------------------------------------------------------------------------------- /src/messages/nb-NO/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/nb-NO/app.php -------------------------------------------------------------------------------- /src/messages/nb-NO/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/nb-NO/category.php -------------------------------------------------------------------------------- /src/messages/nl/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/nl/app.php -------------------------------------------------------------------------------- /src/messages/nl/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/nl/category.php -------------------------------------------------------------------------------- /src/messages/pl/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pl/app.php -------------------------------------------------------------------------------- /src/messages/pl/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pl/category.php -------------------------------------------------------------------------------- /src/messages/pt-BR/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pt-BR/app.php -------------------------------------------------------------------------------- /src/messages/pt-BR/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pt-BR/category.php -------------------------------------------------------------------------------- /src/messages/pt/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pt/app.php -------------------------------------------------------------------------------- /src/messages/pt/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/pt/category.php -------------------------------------------------------------------------------- /src/messages/ro/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ro/app.php -------------------------------------------------------------------------------- /src/messages/ro/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ro/category.php -------------------------------------------------------------------------------- /src/messages/ru/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ru/app.php -------------------------------------------------------------------------------- /src/messages/ru/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/ru/category.php -------------------------------------------------------------------------------- /src/messages/sk/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sk/app.php -------------------------------------------------------------------------------- /src/messages/sk/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sk/category.php -------------------------------------------------------------------------------- /src/messages/sl/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sl/app.php -------------------------------------------------------------------------------- /src/messages/sl/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sl/category.php -------------------------------------------------------------------------------- /src/messages/sr-Latn/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sr-Latn/app.php -------------------------------------------------------------------------------- /src/messages/sr-Latn/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sr-Latn/category.php -------------------------------------------------------------------------------- /src/messages/sr/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sr/app.php -------------------------------------------------------------------------------- /src/messages/sr/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sr/category.php -------------------------------------------------------------------------------- /src/messages/sv/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sv/app.php -------------------------------------------------------------------------------- /src/messages/sv/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/sv/category.php -------------------------------------------------------------------------------- /src/messages/th/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/th/app.php -------------------------------------------------------------------------------- /src/messages/th/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/th/category.php -------------------------------------------------------------------------------- /src/messages/tj/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/tj/app.php -------------------------------------------------------------------------------- /src/messages/tj/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/tj/category.php -------------------------------------------------------------------------------- /src/messages/uk/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/uk/app.php -------------------------------------------------------------------------------- /src/messages/uk/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/uk/category.php -------------------------------------------------------------------------------- /src/messages/vi/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/vi/app.php -------------------------------------------------------------------------------- /src/messages/vi/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/vi/category.php -------------------------------------------------------------------------------- /src/messages/zh-CN/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/zh-CN/app.php -------------------------------------------------------------------------------- /src/messages/zh-CN/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/zh-CN/category.php -------------------------------------------------------------------------------- /src/messages/zh-TW/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/zh-TW/app.php -------------------------------------------------------------------------------- /src/messages/zh-TW/category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/messages/zh-TW/category.php -------------------------------------------------------------------------------- /src/migrations/m160329_210118_create_categories_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/migrations/m160329_210118_create_categories_tables.php -------------------------------------------------------------------------------- /src/migrations_ns/M160329210118Create_categories_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/migrations_ns/M160329210118Create_categories_tables.php -------------------------------------------------------------------------------- /src/models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/models/Category.php -------------------------------------------------------------------------------- /src/models/CategoryClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/models/CategoryClosure.php -------------------------------------------------------------------------------- /src/models/CategoryQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/models/CategoryQuery.php -------------------------------------------------------------------------------- /src/views/admin/default/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/admin/default/_form.php -------------------------------------------------------------------------------- /src/views/admin/default/_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/admin/default/_item.php -------------------------------------------------------------------------------- /src/views/admin/default/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/admin/default/create.php -------------------------------------------------------------------------------- /src/views/admin/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/admin/default/index.php -------------------------------------------------------------------------------- /src/views/admin/default/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/admin/default/update.php -------------------------------------------------------------------------------- /src/views/default/_item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/default/_item.php -------------------------------------------------------------------------------- /src/views/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/default/index.php -------------------------------------------------------------------------------- /src/views/default/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NullRefExcep/yii2-category/HEAD/src/views/default/view.php --------------------------------------------------------------------------------