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_Database_Query::legacy_public_props()
Gets information about properties that used to be public and have been replaced with public getters.
Description Description
Used by __get()
and __set()
and will be removed when these are properly removed in the next major release.
Return Return
(array)
Source Source
File: includes/abstracts/abstract.llms.database.query.php
private function legacy_public_props() { return array( // Property => $0 = alternative prop or method, $1 = has replacement. 'found_results' => array( 'get_found_results', true ), 'max_pages' => array( 'get_max_pages', true ), 'number_results' => array( 'get_number_results', true ), 'query_vars' => array( 'query_vars', false ), 'results' => array( 'get_results', true ), ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |