API15

API15:JApplication/getItemid

From Joomla! Documentation

Revision as of 22:09, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Deprecated, use ContentHelper::getItemid instead. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JApplication/getItemid|Edit Descr...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Deprecated, use ContentHelper::getItemid instead.

[Edit Descripton]

Template:Description:JApplication/getItemid

Syntax

getItemid($id)
Parameter Name Default Value Description
$id

Defined in

libraries/joomla/application/application.php

Importing

jimport( 'joomla.application.application' );

Source Body

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;
}

[Edit See Also] Template:SeeAlso:JApplication/getItemid

Examples

<CodeExamplesForm />