| 1 | <?php |
||
| 25 | class BookMarkFormat extends AbstractFormat |
||
| 26 | { |
||
| 27 | use UrlTrait; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var string bookmark title |
||
| 31 | */ |
||
| 32 | public $title; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | * @throws InvalidConfigException |
||
| 37 | */ |
||
| 38 | public function init() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @inheritdoc |
||
| 47 | */ |
||
| 48 | public function getText() |
||
| 52 | } |
||
| 53 |