LLMS_Abstract_Database_Store::__construct()
Constructor
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.database.store.php
public function __construct() {
if ( ! $this->id ) {
// If created dates supported, add current time to the data on construction.
if ( $this->date_created ) {
$this->set( $this->date_created, llms_current_time( 'mysql' ), false );
}
if ( $this->date_updated ) {
$this->set( $this->date_updated, llms_current_time( 'mysql' ), false );
}
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.21.0 | Unknown. |
| 3.14.0 | Introduced. |