Files

Primary tabs

File name Location Namespacesort descending Description
index.php drupal/index.php The PHP page that serves all page requests on a Drupal installation.
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…
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…
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…
authorize.php drupal/core/authorize.php Administrative script for running authorized file operations.
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.10 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.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 …
CHANGELOG.txt drupal/core/CHANGELOG.txt Drupal 8.0, xxxx-xx-xx (development version) ---------------------- - Added tour module. Provides highly contextual tips for UI elements. - Improved entity system. * Added support for saving and deleting entities through the controller. *…
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…
COPYRIGHT.txt drupal/core/COPYRIGHT.txt Non-displayable characters.
core.services.yml drupal/core/core.services.yml drupal/core/core.services.yml
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.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…
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…
example.sites.php drupal/sites/example.sites.php Configuration file for Drupal's multi-site directory aliasing feature.
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,…
run-tests.sh drupal/core/scripts/run-tests.sh This script runs Drupal tests from command line.
cron-lynx.sh drupal/core/scripts/cron-lynx.sh #!/bin/sh /usr/bin/lynx -source http://example.com/cron/YOURKEY > /dev/null 2>&1
generate-d6-content.sh drupal/core/scripts/generate-d6-content.sh #!/usr/bin/env php <?php /** * Generate content for a Drupal 6 database to test the upgrade process. * * Run this script at the root of an existing Drupal 6 installation. * Steps to use this generation script: * - Install drupal 6. * - Run…
cron-curl.sh drupal/core/scripts/cron-curl.sh #!/bin/sh curl --silent --compressed http://example.com/cron/YOURKEY
dump-database-d7.sh drupal/core/scripts/dump-database-d7.sh Dumps a Drupal 7 database into a Drupal 7 PHP script to test the upgrade process.
generate-d7-content.sh drupal/core/scripts/generate-d7-content.sh #!/usr/bin/env php <?php /** * Generate content for a Drupal 7 database to test the upgrade process. * * Run this script at the root of an existing Drupal 6 installation. * Steps to use this generation script: * - Install drupal 7. * - Run…
password-hash.sh drupal/core/scripts/password-hash.sh #!/usr/bin/php <?php /** * Drupal hash script - to generate a hash from a plaintext password * * Check for your PHP interpreter - on Windows you'll probably have to * replace line 1 with * #!c:/program files/php/php.exe * * @param…
dump-database-d6.sh drupal/core/scripts/dump-database-d6.sh Filled installation of Drupal 6.17, for test purposes.
drupal.sh drupal/core/scripts/drupal.sh #!/usr/bin/env php <?php /** * Drupal shell execution script * * Check for your PHP interpreter - on Windows you'll probably have to * replace line 1 with * #!c:/program files/php/php.exe * * @param path Drupal's absolute root…
database.inc drupal/core/includes/database.inc Core systems for the database layer.
unicode.inc drupal/core/includes/unicode.inc Provides Unicode-related conversions and operations.
entity.inc drupal/core/includes/entity.inc Entity API for handling entities like nodes or users.
install.inc drupal/core/includes/install.inc API functions for installing modules and themes.
update.inc drupal/core/includes/update.inc Drupal database update API.
schema.inc drupal/core/includes/schema.inc Schema API handling functions.
tablesort.inc drupal/core/includes/tablesort.inc Functions to aid in the creation of sortable tables.
pager.inc drupal/core/includes/pager.inc Functions to aid in presenting database results as a set of pages.
module.inc drupal/core/includes/module.inc API for loading and interacting with Drupal modules.
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.
theme.inc drupal/core/includes/theme.inc The theme system, which controls the output of Drupal.
common.inc drupal/core/includes/common.inc Common functions that many Drupal modules will need to reference.
menu.inc drupal/core/includes/menu.inc API for the Drupal menu system.
theme.maintenance.inc drupal/core/includes/theme.maintenance.inc Theming for maintenance pages.
utility.inc drupal/core/includes/utility.inc Miscellaneous functions.
errors.inc drupal/core/includes/errors.inc Functions for error handling.
form.inc drupal/core/includes/form.inc Functions for form and batch generation and processing.
install.core.inc drupal/core/includes/install.core.inc API functions for installing Drupal.
bootstrap.inc drupal/core/includes/bootstrap.inc Functions that need to be loaded on every Drupal request.
Drupal.php drupal/core/lib/Drupal.php Contains Drupal.
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…

Pages

Other projects