API16

Difference between revisions of "JException/get"

From Joomla! Documentation

< API16:JException
(New page: ===Description=== Returns a property of the object or the default value if the property is not set. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:J...)
 
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:JException/get|Edit Descripton]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
  
{{Description:JException/get}}
+
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 46: Line 46:
  
 
<span class="editsection" style="font-size:76%;">
 
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JException/get|Edit See Also]]<nowiki>]</nowiki>
+
<nowiki>[<! removed edit link to red link >]</nowiki>
 
</span>
 
</span>
{{SeeAlso:JException/get}}
+
<! removed transcluded page call, red link never existed >
  
 
===Examples===
 
===Examples===
Line 61: Line 61:
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Revision as of 00:05, 13 May 2013

The "API16" 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]

Returns a property of the object or the default value if the property is not set.

[<! removed edit link to red link >]

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

Syntax[edit]

get($property, $default=null)
Parameter Name Default Value Description
$property $property The name of the property
$default null $default The default value

Returns[edit]

mixed The value of the property

Defined in[edit]

libraries/joomla/error/exception.php

Importing[edit]

jimport( 'joomla.error.exception' );

Source Body[edit]

public function get($property, $default=null)
{
        if (isset($this->$property)) {
                return $this->$property;
        }
        return $default;
}

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

Examples[edit]

<CodeExamplesForm />