PATH:
home
/
letacommog
/
aperobusiness
/
wp-content
/
plugins
/
modern-events-calendar
/
app
/
features
<?php /** no direct access **/ defined('MECEXEC') or die(); /** * @author Webnus <info@webnus.biz> */ class MEC_feature_login extends MEC_base { public $factory; public $main; public $settings; /** * Constructor method * @author Webnus <info@webnus.biz> */ public function __construct() { // Import MEC Factory $this->factory = $this->getFactory(); // Import MEC Main $this->main = $this->getMain(); // MEC Settings $this->settings = $this->main->get_settings(); } /** * Initialize search feature * @author Webnus <info@webnus.biz> */ public function init() { // login form shortcode $this->factory->shortcode('MEC_login', array($this, 'login')); $this->factory->action('wp_ajax_mec_ajax_login_data', array($this, 'mec_ajax_login_data')); $this->factory->action('wp_ajax_nopriv_mec_ajax_login_data', array($this, 'mec_ajax_login_data')); } public function mec_ajax_login_data() { // Check if our nonce is set. if(!isset($_POST['mec_login_nonce'])) return; // Verify that the nonce is valid. if(!wp_verify_nonce(sanitize_text_field($_POST['mec_login_nonce']), 'mec-ajax-login-nonce')) return; $info = array(); $info['user_login'] = $_POST['username']; $info['user_password'] = $_POST['password']; $info['remember'] = true; $user_signon = wp_signon( $info, false ); if ( is_wp_error($user_signon) ){ echo json_encode(array('loggedin'=>false, 'message'=>__('<strong>'.esc_html('Wrong username or password, reloading...' , 'mec').'</strong>'))); } else { echo json_encode(array('loggedin'=>true, 'message'=>__('<strong>'.esc_html('Login successful, redirecting...' , 'mec').'</strong>'))); } die(); } /** * Show user login form * @return string */ public function login() { $path = MEC::import('app.features.login.login', 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]