|
AnonymousUser |
class |
|
core/includes/anonymous.inc |
Provides a class for managing anonymous users. |
|
ArchiverInterface |
interface |
|
core/includes/archiver.inc |
Defines the common interface for all Archiver classes. |
|
Backup |
abstract class |
|
core/includes/backup/backup.class.inc |
Base class for creating backups. |
|
BackupConfig |
class |
|
core/includes/backup/backup.config.inc |
Base class for creating backups. |
|
BackupDatabase |
abstract class |
|
core/includes/backup/backup.database.inc |
A destination type for saving to a database server. |
|
BackupFile |
class |
|
core/includes/backup/backup.file.inc |
Provides a utility object for reading and writing local backup files. |
|
BackupMySql |
class |
|
core/includes/backup/backup.mysql.inc |
Creates and restores backups from a MySQL database source. |
|
BatchQueue |
class |
|
core/includes/batch.queue.inc |
Defines a batch queue. |
|
BatchMemoryQueue |
class |
|
core/includes/batch.queue.inc |
Defines a batch queue for non-progressive batches. |
|
BackdropCacheArray |
abstract class |
|
core/includes/bootstrap.inc |
Provides a caching wrapper to be used in place of large array structures. |
|
SchemaCache |
class |
|
core/includes/bootstrap.inc |
Extends BackdropCacheArray to allow for dynamic building of the schema cache. |
|
BackdropFakeCache |
class |
|
core/includes/cache-install.inc |
Defines a stub cache implementation to be used during installation. |
|
BackdropCacheInterface |
interface |
|
core/includes/cache.inc |
Defines an interface for cache implementations. |
|
BackdropNullCache |
class |
|
core/includes/cache.inc |
Defines a stub cache implementation. |
|
BackdropDatabaseCache |
class |
|
core/includes/cache.inc |
Defines a default cache implementation. |
|
Color |
class |
|
core/includes/color.inc |
Performs color conversions. |
|
ConfigException |
class |
|
core/includes/config.inc |
A base exception thrown in any configuration system operations. |
|
ConfigNameException |
class |
|
core/includes/config.inc |
Exception thrown when a config object name is invalid. |
|
ConfigValidateException |
class |
|
core/includes/config.inc |
Exception thrown when a config object has a validation error before saving. |
|
ConfigStorageException |
class |
|
core/includes/config.inc |
Exception thrown by classes implementing ConfigStorageInterface. |
|
ConfigStorageReadException |
class |
|
core/includes/config.inc |
Exception thrown when attempting to read a config file fails. |
|
Config |
class |
|
core/includes/config.inc |
Defines the default configuration object. |
|
ConfigStorageInterface |
interface |
|
core/includes/config.inc |
Defines an interface for configuration storage controllers. |
|
ConfigFileStorage |
class |
|
core/includes/config.inc |
Defines the file storage controller. |
|
ConfigDatabaseStorage |
class |
|
core/includes/config.inc |
Defines the database storage controller. |
|
DatabaseCharsetConverter |
class |
|
core/includes/database/charset_converter.inc |
Character set converter for database tables. |
|
DatabaseConnection |
abstract class |
|
core/includes/database/database.inc |
Base Database API class. |
|
Database |
abstract class |
|
core/includes/database/database.inc |
Primary front-controller for the database system. |
|
DatabaseTransactionNoActiveException |
class |
|
core/includes/database/database.inc |
Exception for when popTransaction() is called with no active transaction. |
|
DatabaseTransactionNameNonUniqueException |
class |
|
core/includes/database/database.inc |
Exception thrown when a savepoint or transaction name occurs twice. |
|
DatabaseTransactionCommitFailedException |
class |
|
core/includes/database/database.inc |
Exception thrown when a commit() function fails. |
|
DatabaseTransactionExplicitCommitNotAllowedException |
class |
|
core/includes/database/database.inc |
Exception to deny attempts to explicitly manage transactions. |
|
DatabaseTransactionOutOfOrderException |
class |
|
core/includes/database/database.inc |
Exception thrown when a rollback causes multiple transaction rollbacks. |
|
InvalidMergeQueryException |
class |
|
core/includes/database/database.inc |
Exception thrown for merge queries that do not make semantic sense. |
|
FieldsOverlapException |
class |
|
core/includes/database/database.inc |
Exception thrown if an insert query specifies a field twice. |
|
NoFieldsException |
class |
|
core/includes/database/database.inc |
Exception thrown if an insert query doesn't specify insert or default fields. |
|
DatabaseConnectionNotDefinedException |
class |
|
core/includes/database/database.inc |
Exception thrown if an undefined database connection is requested. |
|
DatabaseDriverNotSpecifiedException |
class |
|
core/includes/database/database.inc |
Exception thrown if no driver is specified for a database connection. |
|
DatabaseTransaction |
class |
|
core/includes/database/database.inc |
A wrapper class for creating and managing database transactions. |
|
DatabaseStatementInterface |
interface |
|
core/includes/database/database.inc |
Represents a prepared statement. |
|
DatabaseStatementBase |
class |
|
core/includes/database/database.inc |
Default implementation of DatabaseStatementInterface. |
|
DatabaseStatementEmpty |
class |
|
core/includes/database/database.inc |
Empty implementation of a database statement. |
|
DatabaseNotFoundException |
class |
|
core/includes/database/database.inc |
Exception thrown when the specified database cannot be found. |
|
DatabaseLog |
class |
|
core/includes/database/log.inc |
Database query logger. |
|
DatabaseConnection_mysql |
class |
|
core/includes/database/mysql/database.inc |
MySQL database connection driver. |
|
DatabaseTasks_mysql |
class |
|
core/includes/database/mysql/install.inc |
Specifies installation tasks for MySQL and equivalent databases. |
|
InsertQuery_mysql |
class |
|
core/includes/database/mysql/query.inc |
MySQL-specific class for executing INSERT queries. |
|
TruncateQuery_mysql |
class |
|
core/includes/database/mysql/query.inc |
MySQL-specific class for executing TRUNCATE queries. |
|
DatabaseSchema_mysql |
class |
|
core/includes/database/mysql/schema.inc |
Class to create and manipulate MySQL tables. |
|
DatabaseStatementPrefetch |
class |
|
core/includes/database/prefetch.inc |
An implementation of DatabaseStatementInterface that prefetches all data. |