public static function getPathRouter($path = array(), $id = 0, $parent_id = 0, $title = '', $alias = '')
{
if (empty(self::$categoryA[$id])) {
self::$categoryP[$id] = self::getPathTreeRouter($path, $id, $parent_id, $title, $alias);
}
return self::$categoryP[$id];
}