Bric::Biz::Category - A module to group assets into categories.
$LastChangedRevision$
$LastChangedDate$
# Return a new category object.
my $cat = Bric::Biz::Category->new($init);
# Look up an existing category object.
my $cat = Bric::Biz::Category->lookup({'id' => $cat_id});
# Search for a list of categories.
my @cats = Bric::Biz::Category->list($crit);
# Attribute accessors.
my $id = $cat->get_id;
my $name = $cat->get_name;
$cat = $cat->set_name($name);
my $desc = $cat->get_description;
$cat = $cat->set_description($desc);
my $site_id = $cat->get_site_id;
$cat = $cat->set_site_id($site_id);
# Return a list of child categories of this category.
@cats = $cat->get_children();
# Return the parent of this category.
$parent = $cat->get_parent();
# Attribute methods.
$val = $element->set_attr($name, $value);
$val = $element->get_attr($name);
$val = $element->set_meta($name, $field, $value);
$val = $element->get_meta($name, $field);
# Ad string methods
$txt = $element->get_ad_string;
$element->set_ad_string($value);
$txt = $element->get_ad_string2;
$element->set_ad_string2($value);
# Add/Delete child categories for this category.
$cat->add_child([$cat || $cat_id]);
$cat->del_child([$cat || $cat_id]);
# Manage keyword associations.
@keys = $cat->get_keywords;
$cat->add_keywords(@keywords);
$cat->del_keywords(@keywords);
# Save information for this category to the database.
$cat->save;
Allows assets to be grouped into categories. In addition to assets a category can contain other categories, allowing a hierarchical layout of categories and assets. New categories will inherit group memberships and asset group permissions from their parents, but those relationships will thereafter be independent of the parent's.
Create a new object of type Bric::Biz::Category. Once save()d, the new category will have the same group memberships as the parent, and have the same permissions granted to its asset group as are granted to the parent's asset group.
Keys for $init are:
The name for this category.
The ID for the site this category is in.
A description of this category
The directory name this category should be associated with.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return an object given an ID or URI, both of which are unique across URIs.
Throws:
Side Effects:
NONE
Notes:
NONE
Return a list of category objects based on certain criteria
Criteria keys:
Category ID. May use ANY for a list of possible values.
The name of the category. May use ANY for a list of possible values.
The category directory name. May use ANY for a list of possible values.
The category URI. May use ANY for a list of possible values.
The category description. May use ANY for a list of possible values.
The ID category of a parent category. May use ANY for a list of possible values.
The ID of a Bric::Util::Grp object to which the category belongs. May use ANY for a list of possible values.
The ID of a Bric::Biz::Site object with which the category is associated. May use ANY for a list of possible values.
A boolean causing only categories associated with active sites to be returned.
Throws:
"Method not implemented"
Side Effects:
NONE
Notes:
This is the default list constructor which should be overridden in all derived classes even if it just calls 'die'.
Deletes the object.
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.
Returns a list or anonymous array of Bric::Biz::Category object IDs based on the search criteria passed via an anonymous hash. The supported lookup keys are the same as those for list().
Throws: NONE.
Side Effects: NONE.
Notes: NONE.
Return the root category and the root category ID for a particular site. If called as an instance method the site or site ID is not necessary; that information will be pulled from $cat->get_site_id.
Returns the category or category ID of the root category for this site.
Throws:
Side Effects: NONE.
Notes: NONE.
Return all the parent category of this category
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
An alias for get_uri().
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the list of ancestors for this category formatted into a URI.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the list of ancestors for this category formatted into a localized directory structure.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Sets this category's directory.
Throws:
NONE
Side Effects:
Sets the _update_uri flag, which means that when the category's information is saved to the database, the URI field needs to be updated for itself and all its children.
Notes:
NONE
Sets this category's parent ID, making it a child of that category.
Throws:
NONE
Side Effects:
Sets the _update_uri flag, which means that when the category's information is saved to the database, the URI field needs to be updated for itself and all its children.
Notes:
NONE
Get/Set ad strings on this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the ID of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the name of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Sets the name of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Return the site ID for this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Set the site ID for this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the description of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Sets the description of this category, first converting non-Unix line endings.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Get/Set attributes on this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Get/Set attribute metadata on this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns a list of keyword objects associated with this category. If passed a list of keyword IDs, it will return only those keyword objects.
Throws: NONE
Side Effects: NONE
Notes: The old keywords() method has been deprecated. Please use get_keywords(), instead.
Returns the children of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Returns the parent of this category or undef if it is a top level category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Addes a category as a child of this category.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Associates a each of the keyword in a list or array reference of keywords with the category object.
Throws: NONE.
Side Effects: NONE
Notes: The old add_keyword() method has been deprecated. Please use add_keywords(), instead.
Dissociates a list or array reference of keyword objects or IDs from the category object.
Throws: NONE.
Side Effects: NONE
Notes: The old del_keyword() method has been deprecated. Please use del_keywords(), instead.
Return whether this is a root category or not
Throws: NONE
Side Effects: NONE
Notes: NONE
Get/Set the active flag.
Throws:
NONE
Side Effects:
NONE
Notes:
NONE
Save this category
Throws: NONE.
Side Effects: A new category will automatically be added to the same category groups as its parent, and permissions will be granted to its asset group exactly as they are granted to the parent.
Notes: NONE.
NONE.
NONE
Several that need documenting!
Returns the collection of keywords for this category. The collection is a Bric::Util::Coll::Keyword object. See that class and its parent, Bric::Util::Coll, for interface details.
Throws:
Side Effects: NONE.
Notes: NONE.
NONE.
Garth Webb
Jeff "japhy" Pinyan
David Wheeler
perl, Bric::Util::Grp::Category, Bric, Bric::Biz::Keyword, Bric::Biz::Asset