silverstripe-framework/core/model/HiddenClass.php
Geoff Munn bf3c09bec6 First post
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@50105 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-02-25 01:06:39 +00:00

16 lines
280 B
PHP

<?php
/**
* @package sapphire
* @subpackage core
*/
/**
* Anything that implements HiddenClass won't be shown in user-interface elements. For example,
* DataObjects that implement HiddenClass won't be showing in the "new page" dropdown.
*/
interface HiddenClass {
}
?>