| 1 | <?php |
||
| 11 | class RSS extends ContentType |
||
| 12 | { |
||
| 13 | public $html = '<div class="rss">%data%</div>'; |
||
| 14 | public $input = 'url'; |
||
| 15 | public $output = 'text'; |
||
| 16 | public $usable = false; |
||
| 17 | public $exemple = null; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * {@inheritdoc} |
||
| 21 | */ |
||
| 22 | public function __construct($config = []) |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | public function processData($data) |
||
| 43 | } |
||
| 44 |