streaming-website/model/Feedback.php

12 lines
164 B
PHP
Raw Normal View History

<?php
class Feedback extends ModelBase
{
public function isEnabled() {
return $this->has('FEEDBACK');
}
public function getUrl() {
return 'feedback/';
}
}