API15

JApplication/getItemid

From Joomla! Documentation

< API15:JApplication
Revision as of 08:33, 12 May 2013 by JoomlaWikiBot (talk | contribs) (removing red link to edit, no existant pages)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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 edit link to red link >]

<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />