◆ getDefaultEngine()
ilDatabasePopulatedObjective::getDefaultEngine |
( |
ilDBInterface |
$db | ) |
|
|
private |
◆ getHash()
ilDatabasePopulatedObjective::getHash |
( |
| ) |
|
◆ getLabel()
ilDatabasePopulatedObjective::getLabel |
( |
| ) |
|
◆ getPreconditions()
ilDatabasePopulatedObjective::getPreconditions |
( |
Setup\Environment |
$environment | ) |
|
◆ isApplicable()
ilDatabasePopulatedObjective::isApplicable |
( |
Setup\Environment |
$environment | ) |
|
◆ isDatabasePopulated()
ilDatabasePopulatedObjective::isDatabasePopulated |
( |
ilDBInterface |
$db | ) |
|
|
protected |
Definition at line 100 of file class.ilDatabasePopulatedObjective.php.
References ilDBInterface\listTables().
Referenced by isApplicable().
102 $probe_tables = [
'usr_data',
'object_data',
'object_reference'];
103 $number_of_probe_tables = count($probe_tables);
105 $number_of_tables = count($tables);
108 $number_of_tables > self::MIN_NUMBER_OF_ILIAS_TABLES
109 && count(array_intersect($tables, $probe_tables)) === $number_of_probe_tables;
◆ isNotable()
ilDatabasePopulatedObjective::isNotable |
( |
| ) |
|
◆ queryReader()
ilDatabasePopulatedObjective::queryReader |
( |
string |
$path_to_db_dump | ) |
|
|
private |
Definition at line 137 of file class.ilDatabasePopulatedObjective.php.
Referenced by readDumpFile().
140 $handle = fopen($path_to_db_dump,
"r");
141 while (($line = fgets($handle)) !==
false) {
142 if (preg_match(
'/^--/', $line)) {
145 if (preg_match(
'/^\/\*/', $line)) {
150 if (!preg_match(
'/;$/', trim($line))) {
◆ readDumpFile()
- Exceptions
-
Definition at line 115 of file class.ilDatabasePopulatedObjective.php.
References Vendor\Package\$e, $query, ilDBInterface\execute(), ilDBInterface\prepareManip(), and queryReader().
Referenced by getPreconditions().
117 $path_to_db_dump = $this->config->getPathToDBDump();
118 if (!is_file(realpath($path_to_db_dump)) ||
119 !is_readable(realpath($path_to_db_dump))) {
120 throw new Setup\UnachievableException(
121 "Cannot read database dump file: $path_to_db_dump" 129 throw new Setup\UnachievableException(
130 "Cannot populate database with dump file: $path_to_db_dump. Query failed: $query wih message " . $e->getMessage(
queryReader(string $path_to_db_dump)
execute(ilDBStatement $stmt, array $data=[])
prepareManip(string $a_query, ?array $a_types=null)
◆ setDefaultEngine()
ilDatabasePopulatedObjective::setDefaultEngine |
( |
ilDBInterface |
$db | ) |
|
|
private |
◆ MIN_NUMBER_OF_ILIAS_TABLES
const ilDatabasePopulatedObjective::MIN_NUMBER_OF_ILIAS_TABLES = 200 |
The documentation for this class was generated from the following file: