API15

Difference between revisions of "JApplication/appendPathWay"

From Joomla! Documentation

< API15:JApplication
(New page: ===Description=== Deprecated functions Deprecated, use JPathWay->addItem() method instead. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JApplic...)
 
m (removing red link to edit, no existant pages)
Line 3: Line 3:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JApplication/appendPathWay|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JApplication/appendPathWay}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 72: Line 72:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JApplication/appendPathWay|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JApplication/appendPathWay}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 87: Line 87:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API15]]

Revision as of 08:31, 12 May 2013

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 functions Deprecated, use JPathWay->addItem() method instead.

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax[edit]

appendPathWay($name, $link=null)
Parameter Name Default Value Description
$name
$link null

Defined in[edit]

libraries/joomla/application/application.php

Importing[edit]

jimport( 'joomla.application.application' );

Source Body[edit]

function appendPathWay( $name, $link = null )
{
        /*
         * To provide backward compatability if no second parameter is set
         * set it to null
         */
        if ($link == null) {
                $link = '';
        }

        $pathway =& $this->getPathway();

        if( defined( '_JLEGACY' ) && $link == '' )
        {
                $matches = array();

                $links = preg_match_all ( '/<a[^>]+href="([^"]*)"[^>]*>([^<]*)<\/a>/ui', $name, $matches, PREG_SET_ORDER );

                foreach( $matches AS $match) {
                        // Add each item to the pathway object
                        if( !$pathway->addItem( $match[2], $match[1] ) ) {
                                return false;
                        }
                }
                 return true;
        }
        else
        {
                // Add item to the pathway object
                if ($pathway->addItem($name, $link)) {
                        return true;
                }
        }

        return false;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples[edit]

<CodeExamplesForm />