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 (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Returns a property of the object or the default value if the property is not set.
 
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:JException/get|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JException/get}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 45: Line 43:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JException/get|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JException/get}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=get
 
  category=get
 
  category=JException
 
  category=JException
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:37, 24 March 2017

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 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 transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]