LLMS_Abstract_Database_Store::save()
Save object to the database Creates is it doesn’t already exist, updates if it does
Description Description
Return Return
(boolean)
Source Source
File: includes/abstracts/llms.abstract.database.store.php
public function save() { if ( ! $this->id ) { $id = $this->create(); if ( $id ) { return true; } return false; } else { return $this->update( $this->data ); } }
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: