silverstripe-cms/code/Model/CurrentPageIdentifier.php
Damian Mooyman a87a857a6e
Upgrade code for framework namespaces
Remove @package / @subpackage
Fix inifinite loop in VirtualPage_Controller
2016-09-07 16:29:26 +12:00

26 lines
479 B
PHP

<?php
namespace SilverStripe\CMS\Model;
use SilverStripe\ORM\DataObject;
/**
* This interface lets us set up objects that will tell us what the current page is.
*/
interface CurrentPageIdentifier {
/**
* Get the current page ID.
* @return int
*/
public function currentPageID();
/**
* Check if the given DataObject is the current page.
* @param DataObject $page The page to check.
* @return boolean
*/
public function isCurrentPage(DataObject $page);
}