%PDF- %PDF-
Direktori : /home/komfo908/public_html/inauguracao/wp-content/plugins/tutor/templates/dashboard/ |
Current File : /home/komfo908/public_html/inauguracao/wp-content/plugins/tutor/templates/dashboard/my-profile.php |
<?php /** * My Profile Page * * @package Tutor\Templates * @subpackage Dashboard * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.4.3 */ $uid = get_current_user_id(); $user = get_userdata( $uid ); $profile_settings_link = tutor_utils()->get_tutor_dashboard_page_permalink( 'settings' ); $rdate = $user->user_registered; $fname = $user->first_name; $lname = $user->last_name; $uname = $user->user_login; $email = $user->user_email; $phone = get_user_meta( $uid, 'phone_number', true ); $job = nl2br( wp_strip_all_tags( get_user_meta( $uid, '_tutor_profile_job_title', true ) ) ); $bio = get_user_meta( $uid, '_tutor_profile_bio', true ); $profile_data = array( array( __( 'Registration Date', 'tutor' ), ( $rdate ? tutor_i18n_get_formated_date( tutor_utils()->get_local_time_from_unix( $rdate ) ) : '' ) ), array( __( 'First Name', 'tutor' ), ( $fname ? $fname : esc_html( '-' ) ) ), array( __( 'Last Name', 'tutor' ), ( $lname ? $lname : __( '-' ) ) ), array( __( 'Username', 'tutor' ), $uname ), array( __( 'Email', 'tutor' ), $email ), array( __( 'Phone Number', 'tutor' ), ( $phone ? $phone : '-' ) ), array( __( 'Skill/Occupation', 'tutor' ), ( $job ? $job : '-' ) ), array( __( 'Biography', 'tutor' ), $bio ? $bio : '-' ), ); ?> <div class="tutor-fs-5 tutor-fw-medium tutor-color-black tutor-mb-24"><?php esc_html_e( 'My Profile', 'tutor' ); ?></div> <div class="tutor-dashboard-content-inner tutor-dashboard-profile-data"> <?php foreach ( $profile_data as $key => $data ) : ?> <div class="tutor-row tutor-mb-24"> <div class="tutor-col-12 tutor-col-sm-5 tutor-col-lg-3"> <span class="tutor-fs-6 tutor-color-secondary"><?php echo esc_html( $data[0] ); ?></span> </div> <div class="tutor-col-12 tutor-col-sm-7 tutor-col-lg-9"> <?php echo 'Biography' === $data[0] ? '<span class="tutor-fs-6 tutor-color-secondary">' . wp_kses_post( wpautop( $data[1] ) ) . '</span>' : '<span class="tutor-fs-6 tutor-fw-medium tutor-color-black">' . esc_html( $data[1] ) . '</span>'; ?> </div> </div> <?php endforeach; ?> </div>