Name
mgd_get_group -- Get a group record
Synopsis
object mgd_get_group
(int id);
Description
Minimum version: Midgard 1.1.1 (Iron River) ,
Gets information about the group record with id
id.
Returns an object describing the group record if successfull.
Returns false on failure.
Example
<?php
$grp = mgd_get_group(1);
if($grp) {
echo $grp->name . "(" . $grp->official . ")<br>";
echo "Owner: " . $grp->owner;
}
?>