elements
11 months ago
fragments
11 months ago
metabox
1 year ago
modal
1 year ago
options
9 months ago
pages
5 months ago
qna
11 months ago
quiz
9 months ago
template-import
7 months ago
course-share.php
1 year ago
maintenance.php
3 years ago
course-share.php
65 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Course share |
| 4 | * |
| 5 | * @package Tutor\Views |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 1.5.8 |
| 9 | */ |
| 10 | |
| 11 | $tutor_social_share_icons = tutor_utils()->tutor_social_share_icons(); |
| 12 | if ( ! tutor_utils()->count( $tutor_social_share_icons ) ) { |
| 13 | return; |
| 14 | } |
| 15 | |
| 16 | $share_config = array( |
| 17 | 'title' => get_the_title(), |
| 18 | 'text' => get_the_excerpt(), |
| 19 | 'image' => get_tutor_course_thumbnail( 'post-thumbnail', true ), |
| 20 | ); |
| 21 | ?> |
| 22 | |
| 23 | <a data-tutor-modal-target="tutor-course-share-opener" href="#" class="tutor-btn tutor-btn-ghost tutor-course-share-btn"> |
| 24 | <span class="tutor-icon-share tutor-mr-8"></span> <?php esc_html_e( 'Share', 'tutor' ); ?> |
| 25 | </a> |
| 26 | <div id="tutor-course-share-opener" class="tutor-modal"> |
| 27 | <span class="tutor-modal-overlay"></span> |
| 28 | <div class="tutor-modal-window"> |
| 29 | <div class="tutor-modal-content tutor-modal-content-white"> |
| 30 | <button class="tutor-iconic-btn tutor-modal-close-o" data-tutor-modal-close> |
| 31 | <span class="tutor-icon-times" area-hidden="true"></span> |
| 32 | </button> |
| 33 | <div class="tutor-modal-body"> |
| 34 | <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-16"> |
| 35 | <?php esc_html_e( 'Share Course', 'tutor' ); ?> |
| 36 | </div> |
| 37 | <div class="tutor-fs-7 tutor-color-secondary tutor-mb-12"> |
| 38 | <?php esc_html_e( 'Page Link', 'tutor' ); ?> |
| 39 | </div> |
| 40 | <div class="tutor-mb-32 tutor-position-relative"> |
| 41 | <input class="tutor-form-control" value="<?php echo esc_attr( get_permalink( get_the_ID() ) ); ?>" /> |
| 42 | <button class="tutor-btn tutro-btn-icon tutor-copy-text tutor-position-absolute tutor-bg-white" style="right: 2px; top: 2px;" data-text="<?php echo esc_attr( get_permalink( get_the_ID() ) ); ?>"> |
| 43 | <span class="icon tutor-icon-copy"></span> |
| 44 | </button> |
| 45 | </div> |
| 46 | <div> |
| 47 | <div class="tutor-color-black tutor-fs-6 tutor-fw-medium tutor-mb-16"> |
| 48 | <?php esc_html_e( 'Share On Social Media', 'tutor' ); ?> |
| 49 | </div> |
| 50 | <div class="tutor-social-share-wrap" data-social-share-config="<?php echo esc_attr( wp_json_encode( $share_config ) ); ?>"> |
| 51 | <?php foreach ( $tutor_social_share_icons as $icon ) : ?> |
| 52 | <button class="tutor_share <?php echo esc_attr( $icon['share_class'] ); ?>" style="background: <?php echo esc_attr( $icon['color'] ); ?>"> |
| 53 | <?php echo wp_kses( $icon['icon_html'], tutor_utils()->allowed_icon_tags() ); ?> |
| 54 | <span> |
| 55 | <?php echo esc_html( $icon['text'] ); ?> |
| 56 | </span> |
| 57 | </button> |
| 58 | <?php endforeach; ?> |
| 59 | </div> |
| 60 | </div> |
| 61 | </div> |
| 62 | </div> |
| 63 | </div> |
| 64 | </div> |
| 65 |