Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: option.php
<?php /** * Admin question editor: question answer template. * * @since 3.0.0 */ ?> <script type="text/x-template" id="tmpl-lp-question-answer-option"> <tr class="answer-option" :class="[isNew() || isUpdating() ? 'new-option' : '']" :data-answer-id="id"> <td class="sort lp-sortable-handle"><?php learn_press_admin_view( 'svg-icon' ); ?></td> <td class="answer-text"> <form @submit.prevent=""> <input type="text" v-model="answer.title" @change="changeTitle" @blur="updateTitle" @keyup.enter="updateTitle"/> </form> </td> <td class="answer-correct lp-answer-check"> <input :type="radio ? 'radio' : 'checkbox'" :checked="correct ? 'checked' : ''" :value="answer.value" :name="name" @change="changeCorrect"> </td> <td class="actions lp-toolbar-buttons"> <div v-if="deletable" class="lp-toolbar-btn lp-btn-remove remove-answer"> <a class="lp-btn-icon dashicons dashicons-trash" @click="deleteAnswer" title="<?php esc_attr_e( 'Delete', 'learnpress' ); ?>"></a> </div> </td> </tr> </script> <script type="text/javascript"> jQuery( function($) { var $store = window.LP_Question_Store; window.$Vue = window.$Vue || Vue; $Vue.component('lp-question-answer-option', { template: '#tmpl-lp-question-answer-option', props: ['answer', 'index', 'type', 'radio', 'number'], data: function() { return { changed: false, updating: false } }, computed: { // answer id id: function() { return this.answer.question_answer_id; }, // check correct answer correct: function() { return this.answer.is_true === 'yes'; }, // input correct form name name: function() { return 'answer_question[' + $store.getters['id'] + ']' }, // deletable answer deletable: function() { return !(this.number < 3 || (this.correct && $store.getters['numberCorrect'] === 1) || this.type === 'true_or_false'); }, status: function() { return $store.getters['status']; } }, watch: { status: function(s) { if (s !== 'loading') { this.updating = false; } return s; } }, mounted: function() { if (this.isNew()) { this.changed = true; this.updateTitle(); setTimeout(() => { $(this.$el).find('.answer-text input').focus(); }, 300) } }, methods: { changeTitle: function() { this.changed = true; }, updateTitle: function() { if (this.changed) { this.updating = true; this.$emit('updateTitle', this.answer); } }, changeCorrect: function (e) { this.updating = true; this.answer.is_true = (e.target.checked) ? 'yes' : ''; this.$emit('changeCorrect', this.answer); }, deleteAnswer: function () { this.$emit('deleteAnswer', { id: this.id, order: this.answer.order }); }, isNew: function () { return isNaN(this.answer.question_answer_id); }, isUpdating: function () { return this.updating; } } }) }); </script>