Liz::TTS::Picture - module for Picture objects of the TTS
use Liz::TTS; $tts = new Liz::TTS;
$picture = $tts->Picture; $picture = $tts->Picture( $ID );
$picture->update;
Provide object oriented access to pictures in a TTS. Usually not accessed directly, but rather through the Liz::TTS object and its Picture method.
Create a new Picture object from a TTS object.
1 Liz::TTS object 2 ID to created Picture object with (default: none = new picture)
1 instantiated object
It is not intended to call this method directly, but rather indirectly through the Liz::TTS module.
$tts = new Liz::TTS; $picture = $tts->Picture; $picture = $tts->Picture( $ID );
Delete the Liz::TTS::Picture object from the database.
1 flag: whether action was successful
$picture->delete;
The following methods allow you to inspect and/or change certain fields of the Liz::TTS::Picture object.
Return the Created timestamp of the Liz::TTS::Picture object.
1 current timestamp value of the Created date
$created = $picture->Created;
Return the ID of the Liz::TTS::Picture object.
1 current ID of the object
$ID = $picture->ID;
Return the PictureID of the Liz::TTS::Picture object.
1 current ID of the object
$ID = $picture->PictureID;
Return the SortName of the Liz::TTS::Picture object.
1 current ID of the object
$ID = $picture->SortName;
Return the Name of the Liz::TTS::Picture object.
1 current Name of the object
$name = $picture->Name;
Return the Updated timestamp of the Liz::TTS::Picture object.
1 current timestamp value of the Updated date
$updated = $picture->Updated;
Sjoerd Lawende(
sjoerd@xxLINK.nl )
(C) 1998-1999 xxLINK Internet Services
First version of this module.