LLMS_Add_On::__get( string $key )
Magic getter to retrieve add-on props from private $data array
Parameters Parameters
- $key
-
(string) (Required) Property key.
Return Return
(mixed)
Source Source
File: includes/models/model.llms.add-on.php
public function __get( $key ) { return isset( $this->data[ $key ] ) ? $this->data[ $key ] : ''; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.22.0 | Introduced. |