API15

JTable/checkin: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Checks in a row <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {{De...
 
m removing red link to edit, no existant pages
Line 3: Line 3:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[Description:JTable/checkin|Edit Descripton]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>


{{Description:JTable/checkin}}
<! removed transcluded page call, red link never existed >


===Syntax===
===Syntax===
Line 64: Line 64:


<span class="editsection" style="font-size:76%;">
<span class="editsection" style="font-size:76%;">
<nowiki>[</nowiki>[[SeeAlso:JTable/checkin|Edit See Also]]<nowiki>]</nowiki>
<nowiki>[<! removed edit link to red link >]</nowiki>
</span>
</span>
{{SeeAlso:JTable/checkin}}
<! removed transcluded page call, red link never existed >


===Examples===
===Examples===
Line 79: Line 79:
  format= ,,,
  format= ,,,
</dpl>
</dpl>
[[Category:Archived pages API15]]

Revision as of 18:51, 12 May 2013

Description

Checks in a row

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

checkin($oid=null)
Parameter Name Default Value Description
$oid null The primary key value for the row

Returns

boolean True if successful, or if checkout is not supported

Defined in

libraries/joomla/database/table.php

Importing

jimport( 'joomla.database.table' );

Source Body

function checkin( $oid=null )
{
        if (!(
                in_array( 'checked_out', array_keys($this->getProperties()) ) ||
                in_array( 'checked_out_time', array_keys($this->getProperties()) )
        )) {
                return true;
        }

        $k = $this->_tbl_key;

        if ($oid !== null) {
                $this->$k = $oid;
        }

        if ($this->$k == NULL) {
                return false;
        }

        $query = 'UPDATE '.$this->_db->nameQuote( $this->_tbl ).
                        ' SET checked_out = 0, checked_out_time = '.$this->_db->Quote($this->_db->getNullDate()) .
                        ' WHERE '.$this->_tbl_key.' = '. $this->_db->Quote($this->$k);
        $this->_db->setQuery( $query );

        $this->checked_out = 0;
        $this->checked_out_time = '';

        return $this->_db->query();
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

<CodeExamplesForm />