Help for this page

Select Code to Download


  1. or download this
    # Create a group object to get owners and members
    my $group_object = MsGroup->new(
    ...
    foreach my $member (@$members){
      # do something usefull with the members    }
    }
    
  2. or download this
    sub fetch_members { #    {{{1
        my $self = shift;                            # get a reference to 
    +the object itself
    ...
        return  \@members; # return a reference to the resul
        
    }#    }}}
    
  3. or download this
    sub do_fetch { # {{{1
        my $self = shift;                            # get a reference to 
    +the object
    ...
            die $result->status_line;
        }
    } #    }}}
    
  4. or download this
    sub callAPI { # {{{1
        my $self = shift;                    # Get a refence to the object
    + itself
    ...
        }
        return $result;
    } # }}}