Tasks::$results

Results from tasks. Type: array File core/lib/Drupal/Core/Database/Install/Tasks.php, line 77 Class Tasks Database installer structure. Namespace Drupal\Core\Database\Install Code protected $results = array( 'fail' => array(), 'pass' => array(), );

Tasks

Database installer structure. Defines basic Drupal requirements for databases. Hierarchy class \Drupal\Core\Database\Install\Tasks File core/lib/Drupal/Core/Database/Install/Tasks.php, line 12 Namespace Drupal\Core\Database\Install Members Name Modifiers Type Description Tasks::$pdoDriver protected property The name of the PDO driver this database type requires. Tasks::$results protected property Results from tasks. Tasks::$tasks protected property Struct

Tasks

Specifies installation tasks for SQLite databases. Hierarchy class \Drupal\Core\Database\Install\Tasksclass \Drupal\Core\Database\Driver\sqlite\Install\Tasks File core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php, line 13 Namespace Drupal\Core\Database\Driver\sqlite\Install Members Name Modifiers Type Description Tasks::$pdoDriver protected property The name of the PDO driver this database type requires. Overrides Tasks::$pdoDriver Tasks::$results protec

Tasks::$pdoDriver

The name of the PDO driver this database type requires. Type: string Overrides Tasks::$pdoDriver File core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php, line 18 Class Tasks Specifies installation tasks for PostgreSQL databases. Namespace Drupal\Core\Database\Driver\pgsql\Install Code protected $pdoDriver = 'pgsql';

Tasks

Specifies installation tasks for PostgreSQL databases. Hierarchy class \Drupal\Core\Database\Install\Tasksclass \Drupal\Core\Database\Driver\pgsql\Install\Tasks File core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php, line 13 Namespace Drupal\Core\Database\Driver\pgsql\Install Members Name Modifiers Type Description Tasks::$pdoDriver protected property The name of the PDO driver this database type requires. Overrides Tasks::$pdoDriver Tasks::$results prote

Tasks

Specifies installation tasks for MySQL and equivalent databases. Hierarchy class \Drupal\Core\Database\Install\Tasksclass \Drupal\Core\Database\Driver\mysql\Install\Tasks File core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php, line 13 Namespace Drupal\Core\Database\Driver\mysql\Install Members Name Modifiers Type Description Tasks::$pdoDriver protected property The PDO driver name for MySQL and equivalent databases. Overrides Tasks::$pdoDriver Tasks::$resul

Tar::remove

public Tar::remove($file_path) Removes the specified file from the archive. Parameters string $path: The file name relative to the root of the archive to remove. Return value \Drupal\Core\Archiver\ArchiverInterface The called object. Overrides ArchiverInterface::remove File core/lib/Drupal/Core/Archiver/Tar.php, line 43 Class Tar Defines a archiver implementation for .tar files. Namespace Drupal\Core\Archiver Code public function remove($file_path) { // @todo Archive_Tar doesn't ha

Tar::getArchive

public Tar::getArchive() Retrieves the tar engine itself. In some cases it may be necessary to directly access the underlying Archive_Tar object for implementation-specific logic. This is for advanced use only as it is not shared by other implementations of ArchiveInterface. Return value Archive_Tar The Archive_Tar object used by this object. File core/lib/Drupal/Core/Archiver/Tar.php, line 87 Class Tar Defines a archiver implementation for .tar files. Namespace Drupal\Core\Archiver C

Tar::listContents

public Tar::listContents() Lists all files in the archive. Return value array An array of file names relative to the root of the archive. Overrides ArchiverInterface::listContents File core/lib/Drupal/Core/Archiver/Tar.php, line 69 Class Tar Defines a archiver implementation for .tar files. Namespace Drupal\Core\Archiver Code public function listContents() { $files = array(); foreach ($this->tar->listContent() as $file_data) { $files[] = $file_data['filename']; } ret

Tar::extract

public Tar::extract($path, array $files = array()) Extracts multiple files in the archive to the specified path. Parameters string $path: A full system path of the directory to which to extract files. array $files: Optionally specify a list of files to be extracted. Files are relative to the root of the archive. If not specified, all files in the archive will be extracted. Return value \Drupal\Core\Archiver\ArchiverInterface The called object. Overrides ArchiverInterface::extract File core/li