Difference between revisions of "Core/getAliasId"
From PunchCMS
(→Example) |
(→Example) |
(One intermediate revision by the same user not shown) | |
(No difference)
|
Latest revision as of 22:21, 25 December 2008
PCMS_Client->getAliasId()
Overview
Get the element id converted from the curent URL alias.
Arguments
None
Returns
The id of the Element currently active if the Alias is found. Otherwise 0.
Example
$objCms = PCMS_Client::getInstance(); /* The url is http://www.domain.com/info and there is an alias * in the CMS with the name 'info'. */ $intId = $objCms->getAliasId(); $objElement = $objCms->getElementById($intId); if (is_object($objElement)) { // Found the 'info' Element. }