item::get_url (public, deprecated)
item::get_url [ -root_folder_id root_folder_id ] item_id
Defined in packages/acs-content-repository/tcl/deprecated-procs.tcl
Deprecated. Invoking this procedure generates a warning.
- Switches:
- -root_folder_id (optional, defaults to
"null")- Starts path resolution from this folder. Defaults to the root of the sitemap (when null).
- Parameters:
- item_id (required)
- The item id
- Returns:
- The relative URL to the item, or an empty string on failure
- See Also:
- proc item::get_extended_url
- content::item::get_virtual_path
- Testcases:
- No testcase defined.
Source code: ad_log_deprecated proc item::get_url if {$root_folder_id eq "null"} { return [::content::item::get_virtual_path -item_id $item_id] } else { return [::content::item::get_virtual_path -item_id $item_id -root_folder_id $root_folder_id] }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