LLMS_Abstract_Database_Store::hydrate()
Load the whole object from the database
Description Description
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.database.store.php
protected function hydrate() { if ( $this->id ) { $res = $this->read( array_keys( $this->columns ) ); if ( $res ) { $this->data = array_merge( $this->data, $res ); } } return $this; // allow chaining }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.14.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: