1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112:
<?php
namespace WPGMZA;
require_once(plugin_dir_path(__FILE__) . 'class.category-tree-node.php');
class CategoryTree extends CategoryTreeNode
{
public function __construct($map=null)
{
global $wpdb;
global $wpgmza;
global $WPGMZA_TABLE_NAME_MARKERS;
global $WPGMZA_TABLE_NAME_CATEGORIES;
global $WPGMZA_TABLE_NAME_MARKERS_HAS_CATEGORIES;
CategoryTreeNode::__construct();
$this->id = "0";
$this->name = apply_filters('wpgmza_all_categories_text', __('All Categories', 'wp-google-maps'));
$qstr = "SELECT *,
(
SELECT COUNT(marker_id)
FROM $WPGMZA_TABLE_NAME_MARKERS_HAS_CATEGORIES
WHERE category_id=$WPGMZA_TABLE_NAME_CATEGORIES.id
AND marker_id IN
(
SELECT id FROM $WPGMZA_TABLE_NAME_MARKERS
WHERE
" . ($map == null ? '' : 'map_id = %d AND') . "
approved = 1
)
) AS marker_count
FROM $WPGMZA_TABLE_NAME_CATEGORIES
ORDER BY priority";
$params = array();
if($map)
$params[] = $map->id;
$qstr = apply_filters('wpgmza_category_tree_query_string', $qstr);
$params = apply_filters('wpgmza_category_tree_query_params', $params);
if(!empty($params))
$stmt = $wpdb->prepare($qstr, $params);
else
$stmt = $qstr;
$categoryData = $wpdb->get_results($stmt);
$nodesByID = array(
"0" => $this
);
foreach($categoryData as $obj)
{
$node = new CategoryTreeNode();
foreach($obj as $key => $value)
{
$node->{$key} = $value;
}
$nodesByID[$obj->id] = $node;
}
foreach($nodesByID as $id => $node)
{
$parentID = $node->parent;
if($node == $this)
continue;
if(!isset($nodesByID[$parentID]))
{
if($wpgmza->isInDeveloperMode() && !(defined( 'DOING_AJAX' ) && DOING_AJAX))
trigger_error("Parent category $parentID missing", E_USER_NOTICE);
unset($nodesByID[$id]);
continue;
}
$parent = $nodesByID[$parentID];
$parent->children[] = $node;
$node->parent = $parent;
}
foreach($nodesByID as $node)
$node->own_marker_count = $node->marker_count = (int)$node->marker_count;
$leafNodes = $this->getLeafNodes();
foreach($leafNodes as $node)
{
$accum = $node->own_marker_count;
$ancestors = $node->getAncestors();
foreach($ancestors as $ancestor)
{
$ancestor->marker_count += $accum;
$accum += $ancestor->own_marker_count;
}
}
}
}