├── .gitignore ├── ActiveRecord.php ├── Asset.php ├── Bootstrap.php ├── LICENSE.md ├── Module.php ├── README.md ├── TypeAheadAsset.php ├── actions ├── Action.php ├── AnswerAction.php ├── AskAction.php ├── CorrectAction.php ├── DeleteAction.php ├── EditAction.php ├── FavoriteAction.php ├── FavoriteListAction.php ├── IndexAction.php ├── MyListAction.php ├── TagSuggestAction.php ├── TagsAction.php ├── ViewAction.php └── VoteAction.php ├── assets ├── css │ ├── qa.css │ ├── qa.edit.css │ ├── qa.index.css │ ├── qa.typeahead.css │ └── qa.view.css └── js │ └── qa.js ├── components └── ActiveField.php ├── composer.json ├── controllers ├── DefaultController.php └── TagsController.php ├── messages ├── config.php ├── en │ ├── main.php │ └── model.php ├── es │ ├── main.php │ └── model.php └── ru │ ├── main.php │ └── model.php ├── migrations ├── m140314_120159_create_qa_question_table.php ├── m140314_120441_create_qa_answer_table.php ├── m140314_120505_create_qa_tag_table.php ├── m140316_070048_create_qa_vote_table.php ├── m140512_191636_create_qa_favorite_table.php └── m150429_211628_alter_qa_answer_table_column_is_correct.php ├── models ├── Answer.php ├── AnswerInterface.php ├── Favorite.php ├── Question.php ├── QuestionInterface.php ├── QuestionQuery.php ├── QuestionSearch.php ├── Tag.php ├── TagSearch.php └── Vote.php ├── views ├── default │ ├── _tabs.php │ ├── answer.php │ ├── ask.php │ ├── edit.php │ ├── index.php │ ├── parts │ │ ├── answer-correct.php │ │ ├── created.php │ │ ├── edit-links.php │ │ ├── favorite.php │ │ ├── form-answer.php │ │ ├── form-question.php │ │ ├── like.php │ │ ├── list.php │ │ ├── pager.php │ │ ├── tags-list.php │ │ └── vote.php │ ├── tags.php │ └── view.php └── tags │ ├── _form.php │ ├── _search.php │ ├── create.php │ ├── index.php │ ├── update.php │ └── view.php └── widgets ├── Favorite.php ├── Popular.php ├── Tags.php └── views ├── favorite.php ├── popular.php └── tags.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | 3 | !.gitignore -------------------------------------------------------------------------------- /ActiveRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/ActiveRecord.php -------------------------------------------------------------------------------- /Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/Asset.php -------------------------------------------------------------------------------- /Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/Bootstrap.php -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Module.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/Module.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/README.md -------------------------------------------------------------------------------- /TypeAheadAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/TypeAheadAsset.php -------------------------------------------------------------------------------- /actions/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/Action.php -------------------------------------------------------------------------------- /actions/AnswerAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/AnswerAction.php -------------------------------------------------------------------------------- /actions/AskAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/AskAction.php -------------------------------------------------------------------------------- /actions/CorrectAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/CorrectAction.php -------------------------------------------------------------------------------- /actions/DeleteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/DeleteAction.php -------------------------------------------------------------------------------- /actions/EditAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/EditAction.php -------------------------------------------------------------------------------- /actions/FavoriteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/FavoriteAction.php -------------------------------------------------------------------------------- /actions/FavoriteListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/FavoriteListAction.php -------------------------------------------------------------------------------- /actions/IndexAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/IndexAction.php -------------------------------------------------------------------------------- /actions/MyListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/MyListAction.php -------------------------------------------------------------------------------- /actions/TagSuggestAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/TagSuggestAction.php -------------------------------------------------------------------------------- /actions/TagsAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/TagsAction.php -------------------------------------------------------------------------------- /actions/ViewAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/ViewAction.php -------------------------------------------------------------------------------- /actions/VoteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/actions/VoteAction.php -------------------------------------------------------------------------------- /assets/css/qa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/assets/css/qa.css -------------------------------------------------------------------------------- /assets/css/qa.edit.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/qa.index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/assets/css/qa.index.css -------------------------------------------------------------------------------- /assets/css/qa.typeahead.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/assets/css/qa.typeahead.css -------------------------------------------------------------------------------- /assets/css/qa.view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/assets/css/qa.view.css -------------------------------------------------------------------------------- /assets/js/qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/assets/js/qa.js -------------------------------------------------------------------------------- /components/ActiveField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/components/ActiveField.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/composer.json -------------------------------------------------------------------------------- /controllers/DefaultController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/controllers/DefaultController.php -------------------------------------------------------------------------------- /controllers/TagsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/controllers/TagsController.php -------------------------------------------------------------------------------- /messages/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/config.php -------------------------------------------------------------------------------- /messages/en/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/en/main.php -------------------------------------------------------------------------------- /messages/en/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/en/model.php -------------------------------------------------------------------------------- /messages/es/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/es/main.php -------------------------------------------------------------------------------- /messages/es/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/es/model.php -------------------------------------------------------------------------------- /messages/ru/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/ru/main.php -------------------------------------------------------------------------------- /messages/ru/model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/messages/ru/model.php -------------------------------------------------------------------------------- /migrations/m140314_120159_create_qa_question_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m140314_120159_create_qa_question_table.php -------------------------------------------------------------------------------- /migrations/m140314_120441_create_qa_answer_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m140314_120441_create_qa_answer_table.php -------------------------------------------------------------------------------- /migrations/m140314_120505_create_qa_tag_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m140314_120505_create_qa_tag_table.php -------------------------------------------------------------------------------- /migrations/m140316_070048_create_qa_vote_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m140316_070048_create_qa_vote_table.php -------------------------------------------------------------------------------- /migrations/m140512_191636_create_qa_favorite_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m140512_191636_create_qa_favorite_table.php -------------------------------------------------------------------------------- /migrations/m150429_211628_alter_qa_answer_table_column_is_correct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/migrations/m150429_211628_alter_qa_answer_table_column_is_correct.php -------------------------------------------------------------------------------- /models/Answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/Answer.php -------------------------------------------------------------------------------- /models/AnswerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/AnswerInterface.php -------------------------------------------------------------------------------- /models/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/Favorite.php -------------------------------------------------------------------------------- /models/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/Question.php -------------------------------------------------------------------------------- /models/QuestionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/QuestionInterface.php -------------------------------------------------------------------------------- /models/QuestionQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/QuestionQuery.php -------------------------------------------------------------------------------- /models/QuestionSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/QuestionSearch.php -------------------------------------------------------------------------------- /models/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/Tag.php -------------------------------------------------------------------------------- /models/TagSearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/TagSearch.php -------------------------------------------------------------------------------- /models/Vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/models/Vote.php -------------------------------------------------------------------------------- /views/default/_tabs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/_tabs.php -------------------------------------------------------------------------------- /views/default/answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/answer.php -------------------------------------------------------------------------------- /views/default/ask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/ask.php -------------------------------------------------------------------------------- /views/default/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/edit.php -------------------------------------------------------------------------------- /views/default/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/index.php -------------------------------------------------------------------------------- /views/default/parts/answer-correct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/answer-correct.php -------------------------------------------------------------------------------- /views/default/parts/created.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/created.php -------------------------------------------------------------------------------- /views/default/parts/edit-links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/edit-links.php -------------------------------------------------------------------------------- /views/default/parts/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/favorite.php -------------------------------------------------------------------------------- /views/default/parts/form-answer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/form-answer.php -------------------------------------------------------------------------------- /views/default/parts/form-question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/form-question.php -------------------------------------------------------------------------------- /views/default/parts/like.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/like.php -------------------------------------------------------------------------------- /views/default/parts/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/list.php -------------------------------------------------------------------------------- /views/default/parts/pager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/pager.php -------------------------------------------------------------------------------- /views/default/parts/tags-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/tags-list.php -------------------------------------------------------------------------------- /views/default/parts/vote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/parts/vote.php -------------------------------------------------------------------------------- /views/default/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/tags.php -------------------------------------------------------------------------------- /views/default/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/default/view.php -------------------------------------------------------------------------------- /views/tags/_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/_form.php -------------------------------------------------------------------------------- /views/tags/_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/_search.php -------------------------------------------------------------------------------- /views/tags/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/create.php -------------------------------------------------------------------------------- /views/tags/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/index.php -------------------------------------------------------------------------------- /views/tags/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/update.php -------------------------------------------------------------------------------- /views/tags/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/views/tags/view.php -------------------------------------------------------------------------------- /widgets/Favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/Favorite.php -------------------------------------------------------------------------------- /widgets/Popular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/Popular.php -------------------------------------------------------------------------------- /widgets/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/Tags.php -------------------------------------------------------------------------------- /widgets/views/favorite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/views/favorite.php -------------------------------------------------------------------------------- /widgets/views/popular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/views/popular.php -------------------------------------------------------------------------------- /widgets/views/tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artkost/yii2-qa/HEAD/widgets/views/tags.php --------------------------------------------------------------------------------