mirror of
https://github.com/OPSnet/Gazelle.git
synced 2026-01-17 03:04:47 -05:00
14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
namespace Gazelle\Comment;
|
|
|
|
class Collage extends AbstractComment {
|
|
public function page(): string {
|
|
return 'collages';
|
|
}
|
|
|
|
public function pageUrl(): string {
|
|
return "collages.php?action=comments&collageid=";
|
|
}
|
|
}
|