MortgageNews_Embedded::plain_text_html( string $option )
Get html text by type.
Contents
Parameters Parameters
- $option
-
(string) (Required) Type of plaintext
Return Return
(string) plain text embedded
Source Source
File: mortgage-news-widget/inc/MortgageNews_Embedded.php
protected function plain_text_html($option){
$data = $this->get_scroller_data();
if ('plaintext' === $option) {
return $this->plain_text($data, 'plaintext');
} else {
return $this->plain_text($data);
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |