| Server IP : 170.10.162.208 / Your IP : 216.73.216.38 Web Server : LiteSpeed System : Linux altar19.supremepanel19.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64 User : deltahospital ( 1806) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home1/deltahospital/www/wp-content/plugins/fancy-gallery/classes/ |
Upload File : |
<?php Namespace WordPress\Plugin\GalleryManager;
use WP_Query;
abstract class Query {
private static function loadQuery(&$query = Null){
if (!$query instanceOf WP_Query){
global $wp_query;
$query = $wp_query;
}
}
static function isGallerySingle($query = Null, $post){
static::loadQuery($query);
return $query->is_Single($post);
}
static function isGalleryPostTypeArchive($query = Null){
static::loadQuery($query);
return (!$query->is_search && $query->is_Post_Type_Archive(Post_Type::post_type_name));
}
static function isGalleryTaxonomyArchive($query = Null){
static::loadQuery($query);
$gallery_taxonomies = get_Object_Taxonomies(Post_Type::post_type_name);
return !empty($gallery_taxonomies) && $query->is_Tax($gallery_taxonomies);
}
static function isGallerySearch($query = Null){
static::loadQuery($query);
if ($query->is_search){
# Check if the search is inside a post type
if ($query->get('post_type') == Post_Type::post_type_name) return True;
# Check if the search is inside a taxonomy
$gallery_taxonomies = get_Object_Taxonomies(Post_Type::post_type_name);
if (!empty($gallery_taxonomies) && $query->is_Tax($gallery_taxonomies)) return True;
}
return False;
}
static function isGlobalSearch($query = Null){
static::loadQuery($query);
return ($query->is_search && $query->get('post_type') != Post_Type::post_type_name);
}
}