Files

Primary tabs

File name Location Namespacesort descending Description
README.txt drupal/README.txt CONTENTS OF THIS FILE --------------------- * About Drupal * Configuration and features * Installation profiles * Appearance * Developing for Drupal ABOUT DRUPAL ------------ Drupal is an open source content management platform supporting a…
robots.txt drupal/robots.txt # # robots.txt # # This file is to prevent the crawling and indexing of certain parts # of your site by web crawlers and spiders run by sites like Yahoo! # and Google. By telling these "robots" where not to go on your site, # you save…
index.php drupal/index.php The PHP page that serves all page requests on a Drupal installation.
README.txt drupal/modules/README.txt Place downloaded and custom modules that extend your site functionality beyond Drupal core in this directory to ensure clean separation from core modules and to facilitate safe, self-contained code updates. Contributed modules from the Drupal…
README.txt drupal/sites/README.txt This directory structure contains the settings and configuration files specific to your site or sites and is an integral part of multisite configurations. It is now recommended to place your custom and downloaded extensions in the /modules, /themes,…
example.sites.php drupal/sites/example.sites.php Configuration file for Drupal's multi-site directory aliasing feature.
README.txt drupal/profiles/README.txt Place downloaded and custom installation profiles in this directory to ensure separation from Drupal core profiles and to facilitate safe, self-contained code updates. In multisite configuration, installation profiles found in this directory…
README.txt drupal/themes/README.txt Place downloaded and custom themes that modify your site's appearance in this directory to ensure clean separation from Drupal core and to facilitate safe, self-contained code updates. Contributed themes from the Drupal community may be…
CHANGELOG.txt drupal/core/CHANGELOG.txt Drupal 8.0, xxxx-xx-xx (development version) ---------------------- - Improved entity system. * Added support for saving and deleting entities through the controller. * Entities are now classed objects, implementing EntityInterface. *…
COPYRIGHT.txt drupal/core/COPYRIGHT.txt Non-displayable characters.
update.php drupal/core/update.php Administrative page for handling updates from one Drupal version to another.
LICENSE.txt drupal/core/LICENSE.txt GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this…
INSTALL.pgsql.txt drupal/core/INSTALL.pgsql.txt CREATE THE PostgreSQL DATABASE ------------------------------ Note that the database must be created with UTF-8 (Unicode) encoding. 1. CREATE DATABASE USER This step is only necessary if you don't already have a user set up (e.g., by …
INSTALL.sqlite.txt drupal/core/INSTALL.sqlite.txt SQLITE REQUIREMENTS ------------------- To use SQLite with your Drupal installation, the following requirements must be met: Server has PHP 5.3.3 or later with PDO, and the PDO SQLite driver must be enabled. SQLITE DATABASE…
install.php drupal/core/install.php Initiates a browser-based installation of Drupal.
INSTALL.txt drupal/core/INSTALL.txt CONTENTS OF THIS FILE --------------------- * Requirements and notes * Optional server requirements * Installation * Building and customizing your site * Multisite configuration * More information REQUIREMENTS AND…
authorize.php drupal/core/authorize.php Administrative script for running authorized file operations.
INSTALL.mysql.txt drupal/core/INSTALL.mysql.txt CREATE THE MySQL DATABASE -------------------------- This step is only necessary if you don't already have a database set up (e.g., by your host). In the following examples, 'username' is an example MySQL user which has the CREATE and…
MAINTAINERS.txt drupal/core/MAINTAINERS.txt Drupal core is built and maintained by the Drupal project community. Everyone is encouraged to submit issues and changes (patches) to improve Drupal, and to contribute in other ways -- see http://drupal.org/contribute to find out how. Branch…
UPGRADE.txt drupal/core/UPGRADE.txt INTRODUCTION ------------ This document describes how to: * Update your Drupal site from one minor 8.x version to another minor 8.x version; for example, from 8.8 to 8.9, or from 8.6 to 8.10. * Upgrade your Drupal site's major version…
default.settings.php drupal/sites/default/default.settings.php Drupal site-specific configuration file.
README.txt drupal/core/lib/README.txt The core/lib directory is for classes provided by Drupal Core that are original to Drupal. All Drupal-originated code must follow the PSR-0 naming convention for classes and namespaces as documented…
print-rtl.css drupal/core/misc/print-rtl.css body { direction: rtl; } th { text-align: right; }
print.css drupal/core/misc/print.css body { margin: 1em; background-color: #fff; } th { text-align: left; /* LTR */ color: #006; border-bottom: 1px solid #ccc; } tr.odd { background-color: #ddd; } tr.even { background-color: #fff; } td { padding: 5px; } #menu { …
vertical-tabs-rtl.css drupal/core/misc/vertical-tabs-rtl.css div.vertical-tabs { margin-left: 0; margin-right: 15em; } .vertical-tabs ul.vertical-tabs-list { margin-left: 0; margin-right: -15em; float: right; } .vertical-tabs ul.vertical-tabs-list li.selected { border-left-width: 0; …
vertical-tabs.css drupal/core/misc/vertical-tabs.css div.vertical-tabs { margin: 1em 0 1em 15em; /* LTR */ border: 1px solid #ccc; } .vertical-tabs ul.vertical-tabs-list { width: 15em; list-style: none; border-top: 1px solid #ccc; padding: 0; margin: -1px 0 -1px -15em; /* LTR */ float:…
install.core.inc drupal/core/includes/install.core.inc API functions for installing Drupal.
token.inc drupal/core/includes/token.inc Drupal placeholder/token replacement system.
entity.api.php drupal/core/includes/entity.api.php Hooks provided the Entity module.
ajax.inc drupal/core/includes/ajax.inc Functions for use with Drupal's Ajax framework.
update.inc drupal/core/includes/update.inc Drupal database update API.
errors.inc drupal/core/includes/errors.inc Functions for error handling.
pager.inc drupal/core/includes/pager.inc Functions to aid in presenting database results as a set of pages.
standard.inc drupal/core/includes/standard.inc Provides a list of countries and languages based on web standards.
install.inc drupal/core/includes/install.inc API functions for installing modules and themes.
unicode.inc drupal/core/includes/unicode.inc
cache.inc drupal/core/includes/cache.inc Functions and interfaces for cache handling.
language.inc drupal/core/includes/language.inc Language Negotiation API.
batch.inc drupal/core/includes/batch.inc Batch processing API for processes to run in multiple HTTP requests.
file.inc drupal/core/includes/file.inc API for handling file uploads and server file management.
path.inc drupal/core/includes/path.inc Functions to handle paths in Drupal.
session.inc drupal/core/includes/session.inc User session handling functions.
bootstrap.inc drupal/core/includes/bootstrap.inc Functions that need to be loaded on every Drupal request.
schema.inc drupal/core/includes/schema.inc Schema API handling functions.
database.inc drupal/core/includes/database.inc Core systems for the database layer.
config.inc drupal/core/includes/config.inc This is the API for configuration storage.
entity.inc drupal/core/includes/entity.inc Entity API for handling entities like nodes or users.
common.inc drupal/core/includes/common.inc Common functions that many Drupal modules will need to reference.
image.inc drupal/core/includes/image.inc API for manipulating images.
authorize.inc drupal/core/includes/authorize.inc Helper functions and form handlers used for the authorize.php script.

Pages

Other projects