mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
25 lines
372 B
PHP
25 lines
372 B
PHP
<?php
|
|
|
|
class UM_Modal {
|
|
|
|
function __construct() {
|
|
|
|
add_action('wp_footer', array(&$this, 'load_modal_content'), 9);
|
|
|
|
}
|
|
|
|
/***
|
|
*** @Load modal content
|
|
***/
|
|
function load_modal_content(){
|
|
global $ultimatemember;
|
|
|
|
if ( !is_admin() ) {
|
|
foreach( glob( um_path . 'templates/modal/*.php' ) as $modal_content) {
|
|
include_once $modal_content;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
} |