PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7.1
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7.1
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / inc / admin / views / modal-search-items.php

modal-search-items.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.7.1, at inc/admin/views/modal-search-items.php

33 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <script type="text/x-template" id="learn-press-modal-search-items">
2 <div id="modal-search-items" class="learn-press-modal">
3 <div class="modal-overlay">
4
5 </div>
6 <div class="modal-wrapper">
7 <div class="modal-container">
8 <header><?php echo wp_kses_post( $this->_options['title'] ); ?></header>
9 <article>
10 <input type="text" name="search" @keyup="doSearch" ref="term" value="" placeholder="<?php esc_html_e( 'Search items', 'learnpress' ); ?>" autocomplete="off"/>
11 <ul class="search-results" @click="selectItem"></ul>
12 </article>
13 <footer>
14 <div class="search-nav" @click="loadPage" v-if="hasItems">
15 </div>
16 <button class="button"
17 @click="close"><?php echo wp_kses_post( $this->_options['close_button'] ); ?></button>
18 <button class="button button-primary"
19 @click="addItems"
20 v-if="selected.length"><?php echo wp_kses_post( $this->_options['add_button'] ); ?></button>
21 </footer>
22 </div>
23 </div>
24 </div>
25 </script>
26 <div id="vue-modal-search-items" style="position: relative;z-index: 10000;">
27 <learn-press-modal-search-items v-if="show" :post-type="postType" :term="term" :context="context"
28 :context-id="contextId" :show="show" :callbacks="callbacks"
29 :exclude="exclude"
30 v-on:close="close">
31 </learn-press-modal-search-items>
32 </div>
33