JTableExtension: Difference between revisions
From Joomla! Documentation
New page: <span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki>
</span>
{{Description:JTableExtension}}
===Defi... |
m preparing for archive only |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
===Defined in=== | ===Defined in=== | ||
libraries/joomla/database/table/extension.php | libraries/joomla/database/table/extension.php | ||
| Line 27: | Line 22: | ||
|Method to set the publishing state for a row or list of rows in the database table. The method respects checked out rows by other users and will attempt to checkin rows that it can after adjustments are made. | |Method to set the publishing state for a row or list of rows in the database table. The method respects checked out rows by other users and will attempt to checkin rows that it can after adjustments are made. | ||
|} | |} | ||
===Importing=== | ===Importing=== | ||
<source lang="php">jimport( 'joomla.database.table.extension' );</source> | <source lang="php">jimport( 'joomla.database.table.extension' );</source> | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JTableExtension | category=JTableExtension | ||
namespace=CodeExample | |||
category=ClassExample | category=ClassExample | ||
include=* | include=* | ||
format= ,,, | format= ,,, | ||
</dpl> | </dpl> | ||
Latest revision as of 02:10, 25 March 2017
Defined in
libraries/joomla/database/table/extension.php
Methods
| Method name | Description |
|---|---|
| __construct | Contructor |
| check | Overloaded check function |
| bind | Overloaded bind function |
| find | |
| publish | Method to set the publishing state for a row or list of rows in the database table. The method respects checked out rows by other users and will attempt to checkin rows that it can after adjustments are made. |
Importing
jimport( 'joomla.database.table.extension' );
Examples
Code Examples