Bric::Biz::Asset::Business::Story - The interface to the Story Object
$LastChangedRevision$
$LastChangedDate$
# creation of new objects
$story = Bric::Biz::Asset::Business::Story->new( $init )
$story = Bric::Biz::Asset::Business::Story->lookup( $param )
($stories || @stories) = Bric::Biz::Asset::Business::Story->list($param)
# list of object ids
($ids || @ids) = Bric::Biz::Asset::Business::Story->list_ids($param)
# Type of workflow.
my $wf_type = Bric::Biz::Asset::Business::Story->workflow_type;
# General information
$asset = $asset->get_id()
$asset = $asset->set_description($description)
$description = $asset->get_description()
# User information
$usr_id = $asset->get_user__id()
$asset = $asset->set_user__id($usr_id)
# Version information
$vers_grp_id = $asset->get_version_grp__id();
$vers_id = $asset->get_asset_version_id();
# Desk information
$desk = $asset->get_current_desk;
$asset = $asset->set_current_desk($desk);
# Workflow methods.
$id = $asset->get_workflow_id;
$obj = $asset->get_workflow_object;
$id = $asset->set_workflow_id;
# Access note information
$asset = $asset->set_note($note);
my $note = $asset->get_note;
my $notes_href = $asset->get_notes()
# Access active status
$asset = $asset->deactivate()
$asset = $asset->activate()
($asset || undef) = $asset->is_active()
# Publish info
$needs_publish = $asset->needs_publish();
## METHODS INHERITED FROM Bric::Biz::Asset::Business ##
# General info
$name = $biz->get_name()
$biz = $biz->set_name($name)
$ver = $biz->get_version()
# Element Type information
$elem_type = $biz->get_element_type;
$name = $biz->get_element_name()
$at_id = $biz->get_element_type_id()
$biz = $biz->set_element_type_id($at_id)
# Element methods
$element = $biz->get_element_type()
@elements = $biz->get_elements()
$biz = $biz->add_field($field_type_obj, $data)
$value = $biz->get_value($name, $obj_order)
$parts = $biz->get_possible_field_types()
# Container methods
$new_container = $biz->add_container($at_contaier_obj)
$container = $biz->get_container($name, $obj_order)
@containes = $biz->get_possible_containers()
# Access Categories
$cat = $biz->get_primary_category;
$biz = $biz->set_primary_category($cat);
($cats || @cats) = $biz->get_secondary_categories($sortby);
$biz = $biz->add_categories([$category, ...])
($cats || @cats) = $biz->get_categories()
$biz = $biz->delete_categories([$category, ...]);
# Access keywords
$biz = $biz->add_keywords(\@kws)
($kw_list || @kws) = $biz->get_keywords()
($self || undef) = $biz->has_keyword($keyword)
$biz = $biz->del_keywords([$kw, ...])
# Change control
$biz = $biz->cancel()
$biz = $biz->revert($version)
(undef || $biz) = $biz->checkin()
$biz = $biz->checkout($param)
## INSTANCE METHODS FOR Bric::Biz::Asset::Business::Story
# Manipulation of slug field
$slug = $story->get_slug()
$story = $story->set_slug($slug)
# Access the source ID
$src_id = $story->get_source__id()
# Change control
($story || undef) = $story->is_current()
# Ad string management
$story = $story->delete_ad_param($key)
$ad_param_hash = $story->get_ad_param()
$story = $story->set_ad_param($key ,$val);
# Publish data
$date = $story->get_expire_date()
$story = $story->set_expire_date()
$date = $story->get_publish_date()
$story = $story->set_publish_date()
# Save to the database
$story = $story->save()
Story contains all of the data that will result in published page(s) It contains the metadata and associations with story documents. It inherits from Bric::Biz::Asset::Business
This will create a new story object with an optionally defined initial state
Supported Keys:
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This will return a story asset that matches the id provided
Throws:
"Missing required parameter 'id'"
Side Effects:
NONE
Notes:
Inherited from Asset
Returns a list or anonymous array of Bric::Biz::Asset::Business::Story objects based on the search parameters passed via an anonymous hash. The supported lookup keys are:
The title of the story. May use ANY for a list of possible values.
Same as title.
Story description. May use ANY for a list of possible values.
The story ID. May use ANY for a list of possible values.
The story UUID. May use ANY for a list of possible values.
A story ID to exclude from the list. May use ANY for a list of possible values.
The story version number. May use ANY for a list of possible values.
The ID of a version of a story. May use ANY for a list of possible values.
The story slug. May use ANY for a list of possible values.
Returns the versions that are checked out by the user, otherwise returns the most recent version. May use ANY for a list of possible values.
A boolean value indicating whether to return only checked out or not checked out stories.
If passed a true value, this parameter causes the checked in version of the most current version of the story to be returned. When a story is checked out, there are two instances of the current version: the one checked in last, and the one currently being edited. When the checked_in parameter is a true value, then the instance last checked in is returned, rather than the instance currently checked out. This is useful for users who do not currently have a story checked out and wish to see the story as of the last check in, rather than as currently being worked on in the current checkout. If a story is not currently checked out, this parameter has no effect.
Returns the versions of the stories as they were last published. The checked_out parameter will be ignored if this parameter is passed a true value.
Boolean indicating whether to return pass version objects for each story listed.
Boolean indicating whether to return active or inactive stories.
Returns only inactive stories.
Returns a list of stories aliased to the story ID passed as its value. May use ANY for a list of possible values.
Returns a list of stories in the category represented by a category ID. May use ANY for a list of possible values.
Returns a list of stories with a given category URI. May use ANY for a list of possible values.
Returns stories associated with a given keyword string (not object). May use ANY for a list of possible values.
Returns stories with a note matching the value associated with any of their versions. May use ANY for a list of possible values.
Return a list of stories in the workflow represented by the workflow ID. May use ANY for a list of possible values.
Returns a list of stories on a desk with the given ID. May use ANY for a list of possible values.
Returns a list of stories with a given primary URI. May use ANY for a list of possible values.
Returns a list of stories with a given URI. May use ANY for a list of possible values.
Pass in a story ID, and a list of stories in the same categories as the story with that ID will be returned, minus the story with that ID. This parameter triggers a complex join, which can slow the query time significantly on underpowered servers or systems with a large number of stories. Still, it can be very useful in templates that want to create a list of stories in all of the categories the current story is in. But be sure to use the
Returns a list of stories associated with a given site ID. May use ANY for a list of possible values.
Returns a list of stories associated with a given site name. May use ANY for a list of possible values.
Returns a list of stories associated with a given element type ID. May use ANY for a list of possible values.
Returns a list of stories associated with a given source ID. May use ANY for a list of possible values.
Returns a list of stories associated with a given output channel ID. May use ANY for a list of possible values.
Returns a list of stories associated with a given primary output channel ID. May use ANY for a list of possible values.
Returns a list of stories associated with a given priority value. May use ANY for a list of possible values.
Returns a list of stories associated with a given contributor ID. May use ANY for a list of possible values.
Returns a list of stories that are members of the group with the specified group ID. May use ANY for a list of possible values.
Boolean value indicating whether to return published or unpublished stories.
Returns a list of stories first published on or after a given date/time.
Returns a list of stories first published on or before a given date/time.
Returns a list of stories last published on or after a given date/time.
Returns a list of stories last published on or before a given date/time.
Returns a list of stories with a cover date on or after a given date/time.
Returns a list of stories with a cover date on or before a given date/time.
Returns a list of stories with a expire date on or after a given date/time.
Returns a list of stories with a expire date on or before a given date/time.
A boolean parameter. Returns a list of stories without an expire date, or with an expire date set in the future.
The key name for the story type element. May use ANY for a list of possible values.
The key name for a container element that's a subelement of a story. May use ANY for a list of possible values.
The ID for a container element that's a subelement of a story. May use ANY for a list of possible values.
Returns a list of stories that have this story ID as a related story. May use ANY for a list of possible values.
Returns a list of stories that have this media ID as a related media document. May use ANY for a list of possible values.
Text stored in the fields of the story element or any of its subelements. Only fields that use the "short" storage type will be searched. May use ANY for a list of possible values.
A property name or array reference of property names to order by.
The direction in which to order the records, either "ASC" for ascending (the default) or "DESC" for descending. This value is applied to the property specified by the Order parameter, and may also be an array reference. If no value is supplied for any Order property name, it will default to ascending.
A maximum number of objects to return. If not specified, all objects that match the query will be returned.
The number of objects to skip before listing the remaining objcts or the number of objects specified by Limit.
Triggers a single OR search that hits title, description, primary_uri and keywords.
Throws:
Side Effects:
NONE
Notes:
Inherited from Bric::Biz::Asset;
This is a dummy method to save autoload the time to find it
Returns an unordered list or array reference of story 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.
See the list() method for the list of supported Keys.
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. The format for each introspection item introspection is as follows:
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 representing the values and display names to use in a select list.
Throws: NONE.
Side Effects: NONE.
Notes: NONE.
Returns the value of the Bric::Biz::Workflow STORY_WORKFLOW constant.
Returns the a URL for this business asset. The URL is determined by the pre- and post- directory strings of an output channel, the URI of the business object's asset type, and the cover date if the asset type is not a fixed URL.
Throws:
Side Effects: NONE.
Notes: NONE.
Sets the slug for this story
Throws:
Slug Must conform to URL character rules.
Side Effects:
NONE
Notes:
NONE
returns the slug that has been set upon this story
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This will return a list of categories that have been associated with the business asset.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the category object that has been defined as primary
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Defines a category as being the the primary one for this story. If a category is already marked as being primary, this will disassociate it.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the non-primary categories that are associated with this story. Takes an optional sort by field.
Supported Keys:
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
This will take a list category objects or Is and will associate them with the story.
Side Effects:
Adds the asset_grp_ids of the categories to grp_ids (unless they are already there).
This will take a list of categories and remove them from the story.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Preforms story specific checkout stuff and then calls checkout on the parent class
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns a list or anonymous array of Bric::Biz::Group object ids representing the groups of which this Bric::Biz::Asset::Business::Story object is a member.
Throws: See Bric::Util::Grp::list().
Side Effects: NONE.
Notes: This list includes the Group IDs of the Desk, Workflow, and categories in which the story is a member. [Actually, this method is currently disabled, since categories don't actually add assets to an underlying group. If we later find that customers need to control access to assets based on category, we'll figure out a way to rectify this.]
Reverts the current version to a prior version
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Creates an identical copy of this asset with a different id
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the story object in the database
Throws: NONE
Side Effects: NONE
Notes: NONE
Returns the contributors from a cache or looks em up
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Inserts a row into the mapping table for contributors
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the contributor mapping table
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Deletes the rows from these mapping tables
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the category data structure for this story
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Called by save this will make sure that all the changes in category mappings are reflected in the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Adds a record that associates this ba with the category
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Removes this record for the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Preforms an update on the row in the data base
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Inserts a story record into the database
Throws:
NONE
side Effects:
NONE
Notes:
NONE
Inserts an instance record into the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the story record in the database
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Updates the record for the story instance
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Deletes the version record from a cancled checkout
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Deletes from the story table for a story that has never been checked in
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
NONE
Michael Soderstrom