mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 11:05:53 +02:00
d99e3a0927
All cms module except lang directory.
22 lines
432 B
PHP
22 lines
432 B
PHP
<?php
|
|
/**
|
|
* This interface lets us set up objects that will tell us what the current page is.
|
|
* @package cms
|
|
* @subpackage model
|
|
*/
|
|
interface CurrentPageIdentifier {
|
|
/**
|
|
* Get the current page ID.
|
|
* @return int
|
|
*/
|
|
function currentPageID();
|
|
|
|
/**
|
|
* Check if the given DataObject is the current page.
|
|
* @param DataObject $page The page to check.
|
|
* @return boolean
|
|
*/
|
|
function isCurrentPage(DataObject $page);
|
|
}
|
|
|