constant ENTITY_OVERRIDDEN in Entity API 7
A bit flag used to mark entities as overridden, e.g. they were originally defined in code and are saved now in the database. Same as (ENTITY_CUSTOM | ENTITY_IN_CODE).
6 uses of ENTITY_OVERRIDDEN
- EntityAPITestCase::testExportableHooks in ./
entity.test - Make sure insert() and update() hooks for exportables are invoked.
- EntityAPITestCase::testExportables in ./
entity.test - Test loading entities defined in code.
- EntityDefaultUIController::overviewTableRow in includes/
entity.ui.inc - Generates the row for the passed entity and may be overridden in order to customize the rows.
- entity_modules_disabled in ./
entity.module - Implements hook_modules_disabled().
- theme_entity_status in theme/
entity.theme.inc - Themes the exportable status of an entity.
File
- ./
entity.module, line 41
Code
define('ENTITY_OVERRIDDEN', 0x3);