Archived
1
0
Fork 0
This repository has been archived on 2020-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
news-script/Source/Dashingdon.php

17 lines
321 B
PHP
Raw Normal View History

2017-02-08 06:11:07 +02:00
<?php
namespace Source;
use \Game;
/**
* And here's the problem: there are no publication dates.
*/
class Dashingdon extends Source {
public $title = "DashingDon";
protected function parse() {
2017-07-13 18:07:14 +03:00
$text = $this->get_text("https://dashingdon.com/screenreader/");
$this->loadStr($text);
2017-07-13 18:07:14 +03:00
unset($text);
2017-02-08 06:11:07 +02:00
}
}