API17

Difference between revisions of "JException::get"

From Joomla! Documentation

(Layout updates)
(Updated to r1448:247ba8d88526)
Line 8: Line 8:
 
<nowiki>[</nowiki>[[Description:JException::get|Edit Descripton]]<nowiki>]</nowiki>
 
<nowiki>[</nowiki>[[Description:JException::get|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
</span>
===Since===
 
{{JVer|11.1 }}
 
===Synopsis===
 
 
<source lang="php">
 
<source lang="php">
public JException::get ($property, $default=null)
+
public function get (
 +
        $property
 +
        $default=null
 +
)
 
</source>
 
</source>
 
{| class="wikitable"
 
{| class="wikitable"
Line 32: Line 32:
 
|-
 
|-
 
|}
 
|}
===Returns===
+
* '''Returns''' mixed The value of the property
mixed The value of the property
+
* '''Defined''' on line 181 of libraries/joomla/error/exception.php
===Defined in===
+
* '''Since''' {{JVer|11.1 }}
libraries/joomla/error/exception.php (line 183)
 
* see source code in [[jplatform:error/exception.php#cl-183|BitBucket]]
 
===Referenced by===
 
 
===See also===
 
===See also===
 +
* {{JVer|11.1}} '''JException::get source code''' on [[jplatform:error/exception.php#cl-173|BitBucket]]
 +
* {{JVer|11.1}} Class [[JException/11.1|JException]]
 +
* {{JVer|11.1}} Subpackage [[Subpackage_Error/11.1|Error]]
 +
* [[JException::get|Other versions of JException::get]]
 +
{{SeeAlso:JException::get}}
 
<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>[</nowiki>[[SeeAlso:JException::get|Edit See Also]]<nowiki>]</nowiki>
 
</span>
 
</span>
* [[JException/11.1|JException]]
+
===User contributed notes===
* [[JException::get|Other versions of this method]]
 
{{SeeAlso:JException::get}}
 
===Examples===
 
 
<CodeExamplesForm />
 
<CodeExamplesForm />
 
<dpl>
 
<dpl>
Line 53: Line 52:
 
category=MethodExample
 
category=MethodExample
 
include=*
 
include=*
 +
namespace=CodeExample
 
format= ,,,
 
format= ,,,
 
</dpl>
 
</dpl>
 
<noinclude>[[Category:JException]][[Category:JException::get]]</noinclude>
 
<noinclude>[[Category:JException]][[Category:JException::get]]</noinclude>

Revision as of 20:53, 27 April 2011

The "API17" 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.

Joomla 11.1 JException::get[edit]

Description[edit]

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

Template:Description:JException::get [Edit Descripton]

public function get (
        $property
        $default=null
)
Parameter Type Default Description
$property string The name of the property
$default mixed null The default value
  • Returns mixed The value of the property
  • Defined on line 181 of libraries/joomla/error/exception.php
  • Since Joomla 11.1

See also[edit]

Template:SeeAlso:JException::get [Edit See Also]

User contributed notes[edit]

<CodeExamplesForm />