| 1 | <?php |
||
| 12 | class AuthorsController extends SiteController |
||
| 13 | { |
||
| 14 | |||
| 15 | private static $url_handlers = [ |
||
|
|
|||
| 16 | '$AuthorID!' => 'author' |
||
| 17 | ]; |
||
| 18 | |||
| 19 | private static $allowed_actions = [ |
||
| 20 | 'index', |
||
| 21 | 'author' |
||
| 22 | ]; |
||
| 23 | |||
| 24 | public function index() |
||
| 28 | |||
| 29 | public function author($request) |
||
| 40 | |||
| 41 | public function Title() |
||
| 45 | |||
| 46 | public function Link() |
||
| 50 | |||
| 51 | public function Authors() |
||
| 55 | |||
| 56 | } |
||
| 57 |