Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Abstract_Database_Store::get_column_format( string $key )
Retrieve the format for a column
Parameters Parameters
- $key
-
(string) (Required) Column name.
Return Return
(string)
Source Source
File: includes/abstracts/llms.abstract.database.store.php
private function get_column_format( $key ) { if ( isset( $this->columns[ $key ] ) ) { return $this->columns[ $key ]; } return '%s'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.14.0 | Introduced. |