New onsite patient portal, take 4.
[openemr.git] / portal / patient / fwk / libs / util / class.html2text.php
blobfa1cfd54227fccc4623b641c93a07a650965dd48
1 <?php
2 /**
3 * @deprecated use html2text.php convert_html_to_text function instead
4 */
5 require_once 'html2text.php';
6 class html2text {
7 private $html;
8 public function __construct($html) {
9 $this->html = $html;
12 /**
14 * @deprecated use html2text.php convert_html_to_text function instead
16 public function get_text() {
17 return convert_html_to_text ( $this->html );