Content Repository : content_extlink
External links are references to content pages on other web sites. They provide the basis for maintaining a hierarchy of "bookmarks" that may be managed in a manner analogous to other content items. In particular, external links may be tagged with keywords and related to the site's own content items.
Determines if the item is an extlink
Author: | Karl Goldstein | |||
---|---|---|---|---|
Returns: | 't' if the item is an extlink, 'f' otherwise | |||
Parameters: | ||||
|
||||
Declaration: | ||||
function is_extlink ( item_id in cr_items.item_id%TYPE ) return char; | ||||
See Also: | content_extlink.new, content_extlink.resolve |
Create a new extlink, an item pointing to an off-site resource
Author: | Karl Goldstein | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Returns: | The id of the newly created extlink | |||||||||||||||||||||||||||
Parameters: | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Declaration: | ||||||||||||||||||||||||||||
function new ( name in cr_items.name%TYPE default null, url in cr_extlinks.url%TYPE, label in cr_extlinks.label%TYPE default null, description in cr_extlinks.description%TYPE default null, parent_id in acs_objects.context_id%TYPE, extlink_id in cr_extlinks.extlink_id%TYPE default null, creation_date in acs_objects.creation_date%TYPE default sysdate, creation_user in acs_objects.creation_user%TYPE default null, creation_ip in acs_objects.creation_ip%TYPE default null ) return cr_extlinks.extlink_id%TYPE; | ||||||||||||||||||||||||||||
See Also: | acs_object.new, content_item.new, content_extlink.resolve |
Deletes the extlink
Author: | Karl Goldstein | |||
---|---|---|---|---|
Parameters: | ||||
|
||||
Declaration: | ||||
procedure delete ( extlink_id in cr_extlinks.extlink_id%TYPE ); | ||||
See Also: | content_extlink.new, acs_object.delete |