Update 1.1.6

This commit is contained in:
ultimatemember
2015-04-07 20:10:23 +02:00
parent 89722448cb
commit 5e281fbeaf
69 changed files with 820 additions and 222 deletions
+25 -10
View File
@@ -8,6 +8,26 @@ class UM_Query {
}
/***
*** @get all forms
***/
function forms() {
$args = array(
'post_type' => 'um_form',
'posts_per_page' => 200,
'post_status' => array('publish')
);
$query = new WP_Query( $args );
foreach( $query->posts as $post ) {
setup_postdata( $post );
$results[ $post->ID ] = $post->post_title;
}
return $results;
}
/***
*** @get all post types
***/
@@ -24,18 +44,21 @@ class UM_Query {
function make( $args ) {
$defaults = array(
'post_type' => 'post'
'post_type' => 'post',
'post_status' => array('publish')
);
$args = wp_parse_args( $args, $defaults );
if ( isset( $args['post__in'] ) && empty( $args['post__in'] ) )
return false;
extract( $args );
if ( $post_type == 'comment' ) { // comments
unset( $args['post_type'] );
unset( $args['post_status'] );
$comments = get_comments($args);
return $comments;
@@ -183,11 +206,6 @@ class UM_Query {
***/
function role_data( $role_slug ) {
global $wpdb, $ultimatemember;
// get cache
if ( $ultimatemember->cache->role_data( $role_slug ) ) {
return $ultimatemember->cache->role_data( $role_slug );
}
if ($role_slug == 'admin' || $role_slug == 'member'){
$try = $this->find_post_id('um_role','_um_core',$role_slug);
@@ -217,9 +235,6 @@ class UM_Query {
$array = $ultimatemember->setup->get_initial_permissions( $role_slug );
}
// set cache
$ultimatemember->cache->set_role_data( $role_slug, $array );
return $array;
}