LLMS_Abstract_Database_Store::__construct()
Constructor
Description Description
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.14.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: