silverstripe-cms/code/model/CurrentPageIdentifier.php
Fred Condo d99e3a0927 Code cleanup: removed trailing ?> markers per code standard.
All cms module except lang directory.
2012-02-13 12:48:41 -08:00

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);
}