Tasks::$pdoDriver

The name of the PDO driver this database type requires. Type: string File core/lib/Drupal/Core/Database/Install/Tasks.php, line 19 Class Tasks Database installer structure. Namespace Drupal\Core\Database\Install Code protected $pdoDriver;

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

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

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

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

Tar::__construct

public Tar::__construct($file_path) Constructs a Tar object. Parameters string $file_path: The full system path of the archive to manipulate. Only local files are supported. If the file does not yet exist, it will be created if appropriate. Throws \Drupal\Core\Archiver\ArchiverException File core/lib/Drupal/Core/Archiver/Tar.php, line 27 Class Tar Defines a archiver implementation for .tar files. Namespace Drupal\Core\Archiver Code public function __construct($file_path) { $this-&g

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::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::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