API16

JTableNested/debug: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Sets the debug level on or off <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowik...
 
m preparing for archive only
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
Sets the debug level on or off
Sets the debug level on or off


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


{{Description:JTableNested/debug}}
 
 


===Syntax===
===Syntax===
Line 35: Line 33:
</source>
</source>


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


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

Latest revision as of 02:11, 25 March 2017

Description

Sets the debug level on or off



Syntax

debug($level)
Parameter Name Default Value Description
$level 0 = off, 1 = on

Defined in

libraries/joomla/database/tablenested.php

Importing

jimport( 'joomla.database.tablenested' );

Source Body

public function debug($level)
{
        $this->_debug = intval($level);
}



Examples

Code Examples