API16

JObject/getErrors: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Return all errors, if any. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> <...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Return all errors, if any.
Return all errors, if any.


<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JObject/getErrors|Edit Descripton]]<nowiki>]</nowiki>
</span>


{{Description:JObject/getErrors}}
 
 


===Syntax===
===Syntax===
Line 28: Line 26:
</source>
</source>


<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[SeeAlso:JObject/getErrors|Edit See Also]]<nowiki>]</nowiki>
 
</span>
{{SeeAlso:JObject/getErrors}}


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=getErrors
  category=getErrors
  category=JObject
  category=JObject
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*
  format= ,,,
  format= ,,,
</dpl>
</dpl>

Latest revision as of 01:56, 25 March 2017

Description

Return all errors, if any.



Syntax

getErrors()


Returns

array Array of error messages or JErrors.

Defined in

libraries/joomla/base/object.php

Importing

jimport( 'joomla.base.object' );

Source Body

public function getErrors()
{
        return $this->_errors;
}



Examples

Code Examples