LLMS_Abstract_Database_Store::exists()

Determine if the item exists in the database


Return Return

(boolean)


Top ↑

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;

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.15.0 Unknown.
3.14.7 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.