Bric::Biz::Asset::Formatting - Template assets
$Revision: 1.38.2.19 $
$Date: 2004/04/05 21:01:25 $
# Creation of Objects
$fa = Bric::Biz::Asset::Formatting->new( $init )
$fa = Bric::Biz::Asset::Formatting->lookup( { id => $id })
($fa_list || @fas) = Bric::Biz::Asset::Formatting->list( $param )
($faid_list || @fa_ids) = Bric::Biz::Asset::Formatting->list_ids( $param )
# get / set the data that is contained with in
$fa = $fa->set_data()
$data = $fa->get_data()
# get the file name that this will be deployed to
$file_name = $fa->get_file_name()
# get / set the date that this will activate
$date = $fa->get_deploy_date()
$fa = $fa->set_deploy_date($date)
# get the output channel that this is associated with
$output_channel_id = $fa->get_output_channel__id()
# get the asset type that this is associated with
$element__id = $fa->get_element__id()
# get the category that this is associated with
$category_id = $fa->get_category_id()
# Methods Inheriated from Bric::Biz::Asset
# Class Methods
$key_name = Bric::Biz::Asset->key_name()
%priorities = Bric::Biz::Asset->list_priorities()
$data = Bric::Biz::Asset->my_meths
# looking up of objects
($asset_list || @assets) = Bric::Biz::Asset->list( $param )
# General information
$asset = $asset->get_id()
$asset = $asset->set_name($name)
$name = $asset->get_name()
$asset = $asset->set_description($description)
$description = $asset->get_description()
$priority = $asset->get_priority()
$asset = $asset->set_priority($priority)
# User information
$usr_id = $asset->get_user__id()
$modifier = $asset->get_modifier()
# Version information
$vers = $asset->get_version();
$vers_id = $asset->get_version_id();
$current = $asset->get_current_version();
$checked_out = $asset->get_checked_out()
# Expire Data Information
$asset = $asset->set_expire_date($date)
$expire_date = $asset->get_expire_date()
# Desk stamp information
($desk_stamp_list || @desk_stamps) = $asset->get_desk_stamps()
$desk_stamp = $asset->get_current_desk()
$asset = $asset->set_current_desk($desk_stamp)
# Workflow methods.
$id = $asset->get_workflow_id;
$obj = $asset->get_workflow_object;
$asset = $asset->set_workflow_id($id);
# Access note information
$asset = $asset->add_note($note)
($note_list || @notes) = $asset->get_notes()
# Access active status
$asset = $asset->deactivate()
$asset = $asset->activate()
($asset || undef) = $asset->is_active()
$asset = $asset->save()
# returns all the groups this is a member of
($grps || @grps) = $asset->get_grp_ids()
This has changed, it will need to be updated in a bit
Constructs a new template.
Supported Keys:
description
data
deploy_date
expire_date
workflow_id
output_channel - Required unless output channel id passed
output_channel__id - Required unless output channel object passed
tplate_type - The type of template it is.
name - The name of the template. Only used if tplate_type is set to UTILITY_TEMPLATE.
element - the at object
element__id - the id of the asset type
category - the category object
category__id - the category id
file_type - the type of the template file - this will be used as the extension for the file_name derived from the element name. Currently supported file_type values are 'mc', 'pl' and 'tmpl'.
Throws:
Missing required output channel parameter.
Missing required parameter 'element' or 'element__id'.
Invalid file_type parameter.
Missing required parameter 'name'
Invalid tplate_type parameter.
Missing required parameter 'category' or 'category_id'.
The template already exists in the output channel.
Side Effects: NONE.
Notes: NONE.
Returns an object that matches the parameters
Suported Keys
A formatting asset ID.
Pass to request a specific version otherwise the most current will be returned.
Throws:
NONE
Side Effects:
NONE
Notes:
Inherited from Bric::Biz::Asset.
This will return a list of blessed objects that match the defined criteria
Supported Keys:
active - defaults to true
user__id - if defined will return the versions checked out to the user with this id. Otherwise , unless checked_out is passed, it will return the most current non-checked out versions.
checked_out - Indicates whether to list templates that are checked out or not. If "0", then only non-checked out templates will be returned. If "1", then only checked-out templates will be returned. If "all", then the checked_out attributed will be ignored (unless the user__id parameter is passed).
return_versions - will return all the versions of the given templates
id
workflow__id
output_channel__id
tplate_type
element__id
category__id
name
file_name
deploy_date_start
deploy_date_stop
expire_date_start
expire_date_stop
simple - a single OR search that hits name and filename
Throws:
NONE
Side Effects:
NONE
Notes:
Inherited from Bric::Biz::Asset.
Dummy method to prevent wasting time trying to AUTOLOAD DESTROY.
Returns an unordered list or array reference of template object IDs that match the criteria defined. The criteria are the same as those for the list() method except for Order and OrderDirection, which list_ids() ignore.
Throws:
NONE
Side Effects:
NONE
Notes:
Inherited from Bric::Biz::Asset.
Returns the key name of this class.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns an anonymous hash of introspection data for this object. If called with a true argument, it will return an ordered list or anonymous array of introspection data. If a second true argument is passed instead of a first, then a list or anonymous array of introspection data will be returned for properties that uniquely identify an object (excluding id, which is assumed).
Each hash key is the name of a property or attribute of the object. The value for a hash key is another anonymous hash containing the following keys:
The name of the property or attribute. Is the same as the hash key when an anonymous hash is returned.
The display name of the property or attribute.
A reference to the method that will retrieve the value of the property or attribute.
An anonymous array of arguments to pass to a call to get_meth in order to retrieve the value of the property or attribute.
A reference to the method that will set the value of the property or attribute.
An anonymous array of arguments to pass to a call to set_meth in order to set the value of the property or attribute.
The type of value the property or attribute contains. There are only three types:
If the value is a 'short' value, this hash key contains the length of the field.
The property is searchable via the list() and list_ids() methods.
The property or attribute is required.
An anonymous hash of properties used to display the property or attribute. Possible keys include:
The display field type. Possible values are
The Length, in letters, to display a text or password field.
The maximum length of the property or value - usually defined by the SQL DDL.
The number of rows to format in a textarea field.
The number of columns to format in a textarea field.
An anonymous hash of key/value pairs reprsenting the values and display names to use in a select list.
Throws: NONE.
Side Effects: NONE.
Notes: NONE.
Sets the deployment date for this template
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the deploy date set upon this template
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the deploy status of the formatting asset
Throws:
NONE
Side Effects:
NONE
Notes:
this will return the deploy date
sets the deploy status for this template
Throws:
NONE
Side Effect:
NONE
Notes:
This is really the deploy date
Returns the URI for the template. This differs from the file_name in that the latter uses the semantics of your local file system.w
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the file path of this template.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the name of the output channel.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the output channel associated with this Formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns a the stringified name of the template type attribute.
Throws: NONE.
Side Effects: NONE.
Notes: NONE.
Return the name of the AssetType associated with this object.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the AssetType object for this formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Sets the category id for this formatting asset
Throws:
The template already exists in the output channel.
Side Effects:
NONE
Notes:
NONE
Get the category ID for this formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the category object that has been associated with this formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the path from the category
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Get the category name of the category object associated with this formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Set the main data for the formatting asset. In future incarnations there might be more data points that surround this, but not for now.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the chunk of text that makes up this template.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This will create a flag to add a new record to the instance table
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return whether this is the most current version or not.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This cancles a checkout. This will delete the record from the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This will take an older version and copy its data to this version
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
this will update or create a record in the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
################################################################################
Returns the output channel object associated with this formatting object
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the asset type object that was associated with this formatting asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the category object that this is associated with
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the attribute object that is associated with this formatting object
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Inserts a row into the formatting table that represents a new formatting Asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Inserts a row associated with an instance of a formatting asset
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the formatting table
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the row related to the instance of the formatting asset
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Removes the row associated with this formatting asset from the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Removes the instance specific row from the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Builds the file name for a template. If $file_type, $name, or $cat are not passed, they'll be fetched (or for $file_type, computed) from $self.
Throws:
The template already exists in the output channel.
Side Effects: NONE.
Notes: NONE.
Sets the name of the template based on an element association.
Throws:
Missing required parameter 'element' or 'element__id'.
Side Effects: NONE.
Notes: NONE.
Sets the name of the template as a category template, based on the file_type parameter.
Throws:
Invalid file_type parameter.
Side Effects: NONE.
Notes: NONE.
Sets the name of the template as a utility template, based on the name parameter.
Throws:
Missing required parameter 'name'.
Side Effects: NONE.
Notes: NONE.
NONE
michael soderstrom - miraso@pacbell.net