LLMS_Quiz_Legacy::__get( string $item )
__get function
Description Description
initializes the quiz object based on post data
Parameters Parameters
- $item
-
(string) (Required)
Return Return
(string) $value
Source Source
File: includes/class.llms.quiz.legacy.php
public function __get( $item ) { $value = get_post_meta( $this->id, '_' . $item, true ); return $value; }
Expand full source code Collapse full source code View on GitHub