Liz::ProjectSet::Contact - Contact objects within the ProjectSet
use xxLINK; $xxlink = new xxLINK; $projectset = $xxlink->ProjectSet; $contact = $projectset->Contact;
Provide object oriented access to the Contact tables of the ProjectSet. The Liz::ProjectSet::Contact object is in fact a Liz::OCASet::Contact object. See the documentation of that module for more information.
Create a new Contact object from a ProjectSet object.
1 ProjectSet object 2 ID or name to create Contact object with (e.g.'Dijk') 3 if 2==name: firstname of contact (e.g. 'Albert') 4 if 2==name: prefix of contact (e.g. 'van') 5 if 2==name: name on which to sort the object on (default: name,firstname,prefix as lowercase with alpha only)
1 instantiated object
It is not intended to call this method directly, but rather indirectly through the Liz::ProjectSet module.
$xxlink = new xxLINK; $projectset = $xxlink->ProjectSet; $contact = $projectset->Contact( 'Dijk','Albert','van' ); $contact = $projectset->Contact( $contactID );
The following methods allow you to inspect and/or change certain fields of the Liz::ProjectSet::Contact object.
Return or set remarks for this contact
1 string containing the remarks to be set for this Contact
1 string containing the remarks for this Contact
This method is really Data-method of the Liz::OCASet::Contact object in disquise.
$contact->Remarks( 'Responsible for content of News section' ); $remarks = $contact->Remarks;
Elizabeth Mattijsen ( lizperl@INC.nl )
(C) 1998-1999 International Network Consultants
Now no longer adds Exporter to ISA: it wasn't necessary.
First version of this true Perl module.