mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
12 lines
260 B
PHP
12 lines
260 B
PHP
<?php
|
|
class CMSPageReportsController extends CMSMain {
|
|
|
|
static $url_segment = 'page/reports';
|
|
static $url_rule = '/$Action/$ID/$OtherID';
|
|
static $url_priority = 42;
|
|
|
|
function getEditForm($id = null, $fields = null) {
|
|
return "Not implemented yet";
|
|
}
|
|
|
|
} |