1 layout.module layout_autoload_info()

Implements hook_autoload_info().

File

core/modules/layout/layout.module, line 966
The Layout module creates pages and wraps existing pages in layouts.

Code

function layout_autoload_info() {
  return array(
    'LayoutHandler' => 'includes/layout_handler.class.inc',
    'LayoutHandlerBroken' => 'includes/layout_handler.class.inc',
    'Layout' => 'includes/layout.class.inc',
    'LayoutFlexibleTemplate' => 'includes/layout_flexible.class.inc',
    'Block' => 'includes/block.class.inc',
    'BlockBroken' => 'includes/block.class.inc',
    'BlockLegacy' => 'includes/block_legacy.class.inc',
    'BlockText' => 'includes/block.text.inc',
    'BlockHero' => 'includes/block.hero.inc',
    'LayoutMenuItem' => 'includes/layout_menu_item.class.inc',

    // Exceptions.
    'LayoutException' => 'includes/layout.exceptions.inc',
    'LayoutSaveException' => 'includes/layout.exceptions.inc',
    'LayoutMissingException' => 'includes/layout.exceptions.inc',

    // Context handlers.
    'LayoutContext' => 'plugins/context/layout_context.inc',
    'LayoutContextBroken' => 'plugins/context/layout_context.inc',
    'LayoutOverridesPathContext' => 'plugins/context/layout_context.inc',
    'LayoutStringContext' => 'plugins/context/layout_context.inc',
    'EntityLayoutContext' => 'plugins/context/entity_layout_context_handler.inc',

    // Access handlers.
    'EntityBundleLayoutAccess' => 'plugins/access/entity_bundle_layout_access.inc',
    'LayoutAccess' => 'plugins/access/layout_access.inc',
    'LayoutAccessBroken' => 'plugins/access/layout_access.inc',
    'LayoutAccessNegatable' => 'plugins/access/layout_access.inc',
    'LanguageLayoutAccess' => 'plugins/access/language_layout_access.inc',
    'FrontLayoutAccess' => 'plugins/access/front_layout_access.inc',
    'EntityIDLayoutAccess' => 'plugins/access/entity_id_layout_access.inc',
    'PathLayoutAccess' => 'plugins/access/path_layout_access.inc',
    'UserRoleLayoutAccess' => 'plugins/access/user_role_layout_access.inc',
    'UserPermissionLayoutAccess' => 'plugins/access/user_permission_layout_access.inc',
    'UserCompareLayoutAccess' => 'plugins/access/user_compare_layout_access.inc',

    // Renderer handlers.
    'LayoutRendererEditor' => 'plugins/renderers/layout_renderer_editor.inc',
    'LayoutRendererFlexible' => 'plugins/renderers/layout_renderer_flexible.inc',
    'LayoutRendererStandard' => 'plugins/renderers/layout_renderer_standard.inc',

    // Styles.
    'LayoutStyle' => 'plugins/styles/layout_style_default.inc',
    'LayoutStyleDynamic' => 'plugins/styles/layout_style_dynamic.inc',

    // Relationships.
    'LayoutRelationshipAuthorFromNode' => 'plugins/relationships/author_from_node.inc',
    'LayoutRelationship' => 'plugins/relationships/layout_relationship.inc',
    'LayoutRelationshipBroken' => 'plugins/relationships/layout_relationship.inc',
  );
}