RT 3.8.16 Documentation
RT::Transaction
- NAME
- SYNOPSIS
- DESCRIPTION
- METHODS
- Create PARAMHASH
- id
- ObjectType
- SetObjectType VALUE
- ObjectId
- SetObjectId VALUE
- TimeTaken
- SetTimeTaken VALUE
- Type
- SetType VALUE
- Field
- SetField VALUE
- OldValue
- SetOldValue VALUE
- NewValue
- SetNewValue VALUE
- ReferenceType
- SetReferenceType VALUE
- OldReference
- SetOldReference VALUE
- NewReference
- SetNewReference VALUE
- Data
- SetData VALUE
- Creator
- Created
- SEE ALSO
NAME
RT::Transaction
SYNOPSIS
DESCRIPTION
METHODS
Create PARAMHASH
Create takes a hash of values and creates a row in the database:
varchar(64) 'ObjectType'. int(11) 'ObjectId'. int(11) 'TimeTaken'. varchar(20) 'Type'. varchar(40) 'Field'. varchar(255) 'OldValue'. varchar(255) 'NewValue'. varchar(255) 'ReferenceType'. int(11) 'OldReference'. int(11) 'NewReference'. varchar(255) 'Data'.
id
Returns the current value of id. (In the database, id is stored as int(11).)
ObjectType
Returns the current value of ObjectType. (In the database, ObjectType is stored as varchar(64).)
SetObjectType VALUE
Set ObjectType to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ObjectType will be stored as a varchar(64).)
ObjectId
Returns the current value of ObjectId. (In the database, ObjectId is stored as int(11).)
SetObjectId VALUE
Set ObjectId to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ObjectId will be stored as a int(11).)
TimeTaken
Returns the current value of TimeTaken. (In the database, TimeTaken is stored as int(11).)
SetTimeTaken VALUE
Set TimeTaken to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, TimeTaken will be stored as a int(11).)
Type
Returns the current value of Type. (In the database, Type is stored as varchar(20).)
SetType VALUE
Set Type to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Type will be stored as a varchar(20).)
Field
Returns the current value of Field. (In the database, Field is stored as varchar(40).)
SetField VALUE
Set Field to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Field will be stored as a varchar(40).)
OldValue
Returns the current value of OldValue. (In the database, OldValue is stored as varchar(255).)
SetOldValue VALUE
Set OldValue to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, OldValue will be stored as a varchar(255).)
NewValue
Returns the current value of NewValue. (In the database, NewValue is stored as varchar(255).)
SetNewValue VALUE
Set NewValue to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, NewValue will be stored as a varchar(255).)
ReferenceType
Returns the current value of ReferenceType. (In the database, ReferenceType is stored as varchar(255).)
SetReferenceType VALUE
Set ReferenceType to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, ReferenceType will be stored as a varchar(255).)
OldReference
Returns the current value of OldReference. (In the database, OldReference is stored as int(11).)
SetOldReference VALUE
Set OldReference to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, OldReference will be stored as a int(11).)
NewReference
Returns the current value of NewReference. (In the database, NewReference is stored as int(11).)
SetNewReference VALUE
Set NewReference to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, NewReference will be stored as a int(11).)
Data
Returns the current value of Data. (In the database, Data is stored as varchar(255).)
SetData VALUE
Set Data to VALUE. Returns (1, 'Status message') on success and (0, 'Error Message') on failure. (In the database, Data will be stored as a varchar(255).)
Creator
Returns the current value of Creator. (In the database, Creator is stored as int(11).)
Created
Returns the current value of Created. (In the database, Created is stored as datetime.)
SEE ALSO
This class allows "overlay" methods to be placed into the following files _Overlay is for a System overlay by the original author, _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.
These overlay files can contain new subs or subs to replace existing subs in this module.
Each of these files should begin with the line
no warnings qw(redefine);
so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
RT::Transaction_Overlay, RT::Transaction_Vendor, RT::Transaction_Local
← Back to index