JApplication/getItemid
From Joomla! Documentation
< API15:JApplication
The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Deprecated, use ContentHelper::getItemid instead.
<! removed transcluded page call, red link never existed >
Syntax[edit]
getItemid($id)
Parameter Name | Default Value | Description |
---|---|---|
$id |
Defined in[edit]
libraries/joomla/application/application.php
Importing[edit]
jimport( 'joomla.application.application' );
Source Body[edit]
function getItemid( $id )
{
require_once JPATH_SITE.DS.'components'.DS.'com_content'.DS.'helpers'.DS.'route.php';
// Load the article data to know what section/category it is in.
$article =& JTable::getInstance('content');
$article->load($id);
$needles = array(
'article' => (int) $id,
'category' => (int) $article->catid,
'section' => (int) $article->sectionid,
);
$item = ContentHelperRoute::_findItem($needles);
$return = is_object($item) ? $item->id : null;
return $return;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]