API15

JTable/checkin

From Joomla! Documentation

< API15:JTable
Revision as of 17:16, 22 March 2010 by 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...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Description[edit]

Checks in a row

[Edit Descripton]

Template:Description:JTable/checkin

Syntax[edit]

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

Returns[edit]

boolean True if successful, or if checkout is not supported

Defined in[edit]

libraries/joomla/database/table.php

Importing[edit]

jimport( 'joomla.database.table' );

Source Body[edit]

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();
}

[Edit See Also] Template:SeeAlso:JTable/checkin

Examples[edit]

<CodeExamplesForm />