silverstripe-reports/code/controller/CMSPageReportsController.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";
}
}