| 1 | <?php declare(strict_types=1); defined('BASEPATH') OR exit('No direct script access allowed'); |
||
| 3 | class MangaichiScans extends Base_Site_Model { |
||
| 4 | public $titleFormat = '/^[a-z0-9_-]+$/'; |
||
| 5 | public $chapterFormat = '/^en\/[0-9]+(?:\/[0-9]+(?:\/[0-9]+(?:\/[0-9]+)?)?)?$/'; |
||
| 6 | |||
| 7 | public function getFullTitleURL(string $title_url) : string { |
||
| 10 | |||
| 11 | public function getChapterData(string $title_url, string $chapter) : array { |
||
| 19 | |||
| 20 | public function getTitleData(string $title_url, bool $firstGet = FALSE) : ?array { |
||
| 24 | } |
||
| 25 |