%PDF- %PDF-
Direktori : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/question/ |
Current File : /var/www/html/ceaa/wp-content/plugins/learnpress/inc/admin/views/question/editor.php |
<?php /** * Admin question editor: editor template. * * @since 3.0.0 */ learn_press_admin_view( 'question/actions' ); learn_press_admin_view( 'question/answer' ); ?> <script type="text/x-template" id="tmpl-lp-question-editor"> <div id="admin-editor-lp_question" :class="['lp-admin-editor learn-press-box-data', type]"> <lp-question-actions :type="type" @changeType="changeType"></lp-question-actions> <template v-if="isExternal"> <?php do_action( 'learn-press/question-editor/question-js-component' ); ?> </template> <template v-else> <lp-question-answer :type="type" :answers="answers"></lp-question-answer> </template> </div> </script> <script type="text/javascript"> (function (Vue, $store, $) { Vue.component('lp-question-editor', { template: '#tmpl-lp-question-editor', mounted: function () { var vm = this; this.$watch('type', function () { }); }, computed: { // question type key type: function () { return $store.getters['type']['key']; }, // check external vue component isExternal: function () { return $store.getters['externalComponent'].indexOf(this.type) !== -1; }, // list answers answers: function () { return $store.getters['answers']; } }, methods: { changeType: function (type) { // create draft quiz if auto draft $store.dispatch('changeQuestionType', { question: { title: $('input[name=post_title]').val(), content: $('textarea[name=content]').val() }, type: type }); } } }); })(Vue, LP_Question_Store, jQuery); </script>