Turba_Object_Group::count PHP Method

count() public method

Count the number of contacts in this group.
public count ( ) : integer
return integer
    public function count()
    {
        $children = @unserialize($this->attributes['__members']);
        if (!is_array($children)) {
            return 0;
        } else {
            return count($children);
        }
    }