Open source media management and distribution platform
| Name | Location | Description |
|---|---|---|
| AGGREGATOR_CLEAR_NEVER | modules/aggregator/aggregator.module | Denotes that a feed's items should never expire. |
| BLOCK_REGION_NONE | modules/block/block.module | Denotes that a block is not enabled in any region and should not be shown. |
| CACHE_DISABLED | includes/bootstrap.inc | Indicates that page caching is disabled. |
| CACHE_NORMAL | includes/bootstrap.inc | Indicates that page caching is enabled, using "normal" mode. |
| CACHE_PERMANENT | includes/bootstrap.inc | Indicates that the item should never be removed unless explicitly selected. |
| CACHE_TEMPORARY | includes/bootstrap.inc | Indicates that the item should be removed at the next general cache wipe. |
| CHECK_PLAIN | includes/bootstrap.inc | Flag for drupal_set_title(); text is not sanitized, so run check_plain(). |
| COMMENT_ANONYMOUS_MAYNOT_CONTACT | modules/comment/comment.module | Anonymous posters cannot enter their contact information. |
| COMMENT_ANONYMOUS_MAY_CONTACT | modules/comment/comment.module | Anonymous posters may leave their contact information. |
| COMMENT_ANONYMOUS_MUST_CONTACT | modules/comment/comment.module | Anonymous posters are required to leave their contact information. |
| COMMENT_FORM_BELOW | modules/comment/comment.module | Comment form should be shown below post or list of comments. |
| COMMENT_FORM_SEPARATE_PAGE | modules/comment/comment.module | Comment form should be displayed on a separate page. |
| COMMENT_MODE_FLAT | modules/comment/comment.module | Comments are displayed in a flat list - expanded. |
| COMMENT_MODE_THREADED | modules/comment/comment.module | Comments are displayed as a threaded list - expanded. |
| COMMENT_NODE_CLOSED | modules/comment/comment.module | Comments for this node are closed. |
| COMMENT_NODE_HIDDEN | modules/comment/comment.module | Comments for this node are hidden. |
| COMMENT_NODE_OPEN | modules/comment/comment.module | Comments for this node are open. |
| COMMENT_NOT_PUBLISHED | modules/comment/comment.module | Comment is awaiting approval. |
| COMMENT_PUBLISHED | modules/comment/comment.module | Comment is published. |
| CSS_DEFAULT | includes/common.inc | The default weight of CSS files added to the page. |
| CSS_SYSTEM | includes/common.inc | The default weight of system CSS files added to the page. |
| CSS_THEME | includes/common.inc | The default weight of theme CSS files added to the page. |
| DEADWOOD_DIR | sites/all/modules/coder/coder_upgrade/coder_upgrade.inc | The default directory to store modules to be converted. Relative to file_directory_path(). |
| DEADWOOD_NEW | sites/all/modules/coder/coder_upgrade/coder_upgrade.inc | The default directory to store converted modules. Relative to file_directory_path(). |
| DEADWOOD_OLD | sites/all/modules/coder/coder_upgrade/coder_upgrade.inc | The default directory to store modules to be converted. Relative to file_directory_path(). |
| DEADWOOD_PATCH | sites/all/modules/coder/coder_upgrade/coder_upgrade.inc | The default directory to store patch files. Relative to file_directory_path(). |
| DEVEL_ERROR_HANDLER_BACKTRACE | sites/all/modules/devel/devel.module | |
| DEVEL_ERROR_HANDLER_NONE | sites/all/modules/devel/devel.module | |
| DEVEL_ERROR_HANDLER_STANDARD | sites/all/modules/devel/devel.module | |
| DEVEL_MIN_TEXTAREA | sites/all/modules/devel/devel.module | |
| DEVEL_QUERY_SORT_BY_DURATION | sites/all/modules/devel/devel.module | |
| DEVEL_QUERY_SORT_BY_SOURCE | sites/all/modules/devel/devel.module | |
| DNA_ACCESS_VIEW | sites/all/modules/devel/devel_node_access.module | |
| DRUPAL_ANONYMOUS_RID | includes/bootstrap.inc | Role ID for anonymous users; should match what's in the "role" table. |
| DRUPAL_AUTHENTICATED_RID | includes/bootstrap.inc | Role ID for authenticated users; should match what's in the "role" table. |
| DRUPAL_BOOTSTRAP_CONFIGURATION | includes/bootstrap.inc | First bootstrap phase: initialize configuration. |
| DRUPAL_BOOTSTRAP_DATABASE | includes/bootstrap.inc | Third bootstrap phase: initialize database layer. |
| DRUPAL_BOOTSTRAP_FULL | includes/bootstrap.inc | Final bootstrap phase: Drupal is fully loaded; validate and fix input data. |
| DRUPAL_BOOTSTRAP_LANGUAGE | includes/bootstrap.inc | Seventh bootstrap phase: find out language of the page. |
| DRUPAL_BOOTSTRAP_PAGE_CACHE | includes/bootstrap.inc | Second bootstrap phase: try to serve a cached page. |
| DRUPAL_BOOTSTRAP_PAGE_HEADER | includes/bootstrap.inc | Sixth bootstrap phase: set up the page header. |
| DRUPAL_BOOTSTRAP_SESSION | includes/bootstrap.inc | Fifth bootstrap phase: initialize session handling. |
| DRUPAL_BOOTSTRAP_VARIABLES | includes/bootstrap.inc | Fourth bootstrap phase: initialize the variable system. |
| DRUPAL_CACHE_CUSTOM | includes/common.inc | The block is handling its own caching in its hook_block_view(). From the perspective of the block cache system, this is equivalent to DRUPAL_NO_CACHE. Useful when time based expiration is needed or a site uses a node access which invalidates standard... |
| DRUPAL_CACHE_GLOBAL | includes/common.inc | The block or element is the same for every user on every page where it is visible. |
| DRUPAL_CACHE_PER_PAGE | includes/common.inc | The block or element can change depending on the page being viewed. |
| DRUPAL_CACHE_PER_ROLE | includes/common.inc | The block or element can change depending on the roles the user viewing the page belongs to. This is the default setting for blocks, used when the block does not specify anything. |
| DRUPAL_CACHE_PER_USER | includes/common.inc | The block or element can change depending on the user viewing the page. This setting can be resource-consuming for sites with large number of users, and thus should only be used when DRUPAL_CACHE_PER_ROLE is not sufficient. |
| DRUPAL_CORE_COMPATIBILITY | includes/bootstrap.inc | Core API compatibility. |
| DRUPAL_CRON_DEFAULT_THRESHOLD | modules/system/system.module | Default interval for automatic cron executions in seconds. |