cr::keyword::item_get_assigned (public, deprecated)

 cr::keyword::item_get_assigned -item_id item_id \
    [ -parent_id parent_id ]

Defined in packages/acs-content-repository/tcl/deprecated-procs.tcl

Deprecated. Invoking this procedure generates a warning.

Returns a list of all keywords assigned to the given cr_item. If parent_id is supplied, only keywords that are children of parent_id are listed.

Switches:
-item_id (required)
-parent_id (optional)
See Also:

Testcases:
No testcase defined.
Source code:
ad_log_deprecated proc cr::keyword::item_get_assigned

    if {[info exists parent_id]} {
        set keyword_list [content::keyword::item_get_assigned -parent_id $parent_id -item_id $item_id]
    } else {
        set keyword_list [content::keyword::item_get_assigned -item_id $item_id]
    }

    return $keyword_list
Generic XQL file:
packages/acs-content-repository/tcl/deprecated-procs.xql

PostgreSQL XQL file:
packages/acs-content-repository/tcl/deprecated-procs-postgresql.xql

Oracle XQL file:
packages/acs-content-repository/tcl/deprecated-procs-oracle.xql

[ hide source ] | [ make this the default ]
Show another procedure: