PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
wiloke-listing-tools
/
views
/
push-notifications
<div data-tab="customer-push-notification-settings" class="ui bottom attached tab segment"> <h2 class="wiloke-add-listing-fields__title">Customer Settings</h2> <div class="message ui info"> Select Off means this setting won't appear on Notification Settings of your App. </div> <form id="wiloke-push-notification-settings" method="post" action="#" :class="formClass"> <div v-show="errorMsg!=''" class="ui negative message"> <p>{{errorMsg}}</p> </div> <div v-show="successMsg!=''" class="ui positive message"> <p>{{successMsg}}</p> </div> <div class="field"> <div class="ui toggle checkbox" :class="{'checked': toggleCustomerReceiveNotifications=='enable'}"> <input type="checkbox" v-model='toggleCustomerReceiveNotifications' true-value="enable" false-value="disable"> <label>Toggle Push Notifications</label> </div> </div> <div class="field" v-if="toggleCustomerReceiveNotifications=='enable'"> <div class="ui segment" v-for="(oSetting, notificationKey) in oCustomerNotifications"> <h3 class="ui">{{oSetting.title}}</h3> <p v-if="oSetting.settingDesc">{{oSetting.settingDesc}}</p> <div v-if="notificationKey!='toggleAll'" class="field"> <label>Status</label> <select class="dropdown ui" v-model="oSetting.status"> <option value="on">On</option> <option value="off">Off</option> </select> </div> <div class="field"> <label>Title</label> <input type="text" v-model="oSetting.title"> </div> <div class="field"> <label>Description</label> <input type="text" v-model="oSetting.desc"> </div> <div v-if="notificationKey!='toggleAll'" class="field"> <label>Message</label> <input type="text" v-model="oSetting.msg"> </div> <div class="field"> <button type="submit" class="ui button green" @click.prevent="sendNotificationToTestDevice(notificationKey, oSetting)">Send Notification To Test Device</button> </div> </div> </div> <div v-show="errorMsg!=''" class="ui negative message"> <p>{{errorMsg}}</p> </div> <div v-show="successMsg!=''" class="ui positive message"> <p>{{successMsg}}</p> </div> <div class="field"> <button class="ui button green" @click.prevent="saveCustomerSettings">Save Changes</button> </div> </form> </div>
[+]
..
[-] .push-notifications.php
[edit]
[-] firebase-settings.php
[edit]
[-] customer-settings.php
[edit]
[-] index.php
[edit]
[-] admin-settings.php
[edit]