LLMS_Abstract_Database_Store::exists()
Determine if the item exists in the database
Return Return
(boolean)
Source Source
File: includes/abstracts/llms.abstract.database.store.php
public function exists() { if ( $this->primary_key ) { return $this->read( $this->get_primary_key() ) ? true : false; } return false; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.15.0 | Unknown. |
3.14.7 | Introduced. |