PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
features
<?php /** no direct access **/ defined('MECEXEC') or die(); /** * Webnus MEC profile class. * @author Webnus <info@webnus.biz> */ class MEC_feature_profile extends MEC_base { /** * @var MEC_factory */ public $factory; /** * @var MEC_main */ public $main; /** * @var MEC_book */ public $book; /** * @var string */ public $PT; /** * Constructor method * @author Webnus <info@webnus.biz> */ public function __construct() { // Import MEC Factory $this->factory = $this->getFactory(); // Import MEC Main $this->main = $this->getMain(); // Import MEC Book $this->book = $this->getBook(); // Booking Post Type $this->PT = $this->main->get_book_post_type(); } /** * Initialize profile feature * @author Webnus <info@webnus.biz> */ public function init() { // Profile Shortcode $this->factory->shortcode('MEC_profile', array($this, 'profile')); } /** * Show user profile * @param array $atts * @return string */ public function profile($atts = array()) { // Force to array if(!is_array($atts)) $atts = array(); // Show login/register message if user is not logged in and guest submission is not enabled. if(!is_user_logged_in()) { // Show message $message = sprintf(__('Please %s/%s in order to see your bookings / profile.', 'mec'), '<a href="'.wp_login_url($this->main->get_full_url()).'">'.__('Login', 'mec').'</a>', '<a href="'.wp_registration_url().'">'.__('Register', 'mec').'</a>'); ob_start(); include MEC::import('app.features.profile.message', true, true); return ob_get_clean(); } $path = MEC::import('app.features.profile.profile', true, true); ob_start(); include $path; return ob_get_clean(); } }
[+]
..
[+]
fes
[-] compatibility.php
[edit]
[+]
feed
[-] search.php
[edit]
[-] colors.php
[edit]
[-] coupons.php
[edit]
[-] labels.php
[edit]
[-] locations.php
[edit]
[+]
mec
[-] update.php
[edit]
[-] login.php
[edit]
[+]
search_bar
[-] feed.php
[edit]
[+]
ix
[-] index.html
[edit]
[-] gateways.php
[edit]
[-] ix.php
[edit]
[-] contextual.php
[edit]
[+]
profile
[+]
gateways
[-] fes.php
[edit]
[-] books.php
[edit]
[-] events.php
[edit]
[-] profile.php
[edit]
[-] mec.php
[edit]
[-] speakers.php
[edit]
[-] organizers.php
[edit]
[+]
login
[-] op.php
[edit]