silverstripe-framework/core/model/HiddenClass.php

16 lines
280 B
PHP
Raw Normal View History

<?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 {
}
?>