%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/Html/ |
Current File : //var/www/cwg/wp-content/plugins/searchwp/lib/vendor/henck/rtf-to-html/src/Html/Font.php |
<?php namespace SearchWP\Dependencies\RtfHtmlPhp\Html; class Font { public $family; public $name; public $charset; public $codepage; public function toStyle() : string { $list = array(); if ($this->name) { \array_push($list, $this->name); } if ($this->family) { \array_push($list, $this->family); } if (\sizeof($list) == 0) { return ""; } return "font-family:" . \join($list) . ";"; } }