PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.8
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 / templates / profile / tabs / settings / privacy.php

privacy.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.8, at templates/profile/tabs/settings/privacy.php

54 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for displaying change password form in profile page.
4 *
5 * This template can be overridden by copying it to yourtheme/learnpress/settings/tabs/change-password.php.
6 *
7 * @author ThimPress
8 * @package Learnpress/Templates
9 * @version 4.0.0
10 */
11
12 defined( 'ABSPATH' ) || exit();
13
14 $profile = LP_Profile::instance();
15 $privacy = $profile->get_privacy_settings();
16 ?>
17
18 <form method="post" name="profile-privacy" enctype="multipart/form-data" class="learn-press-form">
19
20 <?php do_action( 'learn-press/before-profile-privacy-fields', $profile ); ?>
21
22 <ul class="form-fields">
23
24 <?php
25 do_action( 'learn-press/begin-profile-privacy-fields', $profile );
26
27 foreach ( $privacy as $item ) {
28 ?>
29 <li class="form-field">
30 <label for="privacy-<?php echo esc_attr( $item['id'] ); ?>"><?php echo esc_html( $item['name'] ); ?></label>
31 <div class="form-field-input">
32 <input type="hidden" name="privacy[<?php echo esc_attr( $item['id'] ); ?>]" value="no"/>
33 <input type="checkbox" name="privacy[<?php echo esc_attr( $item['id'] ); ?>]" value="yes" id="privacy-<?php echo esc_attr( $item['id'] ); ?>" <?php checked( $profile->get_privacy( $item['id'] ), 'yes' ); ?>/>
34
35 <?php if ( ! empty( $item['description'] ) ) : ?>
36 <p class="description"><?php echo esc_html( $item['description'] ); ?></p>
37 <?php endif; ?>
38 </div>
39 </li>
40 <?php
41 }
42 ?>
43
44 <?php do_action( 'learn-press/end-profile-privacy-fields', $profile ); ?>
45
46 </ul>
47 <input type="hidden" name="save-profile-privacy" value="<?php echo wp_create_nonce( 'learn-press-save-profile-privacy' ); ?>"/>
48
49 <?php do_action( 'learn-press/after-profile-privacy-fields', $profile ); ?>
50
51 <button type="submit" name="submit" id="submit"><?php esc_html_e( 'Save changes', 'learnpress' ); ?></button>
52
53 </form>
54