Home
last modified time | relevance | path

Searched refs:tablesInstalled (Results 1 – 3 of 3) sorted by relevance

/dports/www/matomo/piwik/plugins/Installation/
H A DController.php188 $tablesInstalled = DbHelper::getTablesInstalled();
189 $view->tablesInstalled = '';
191 if (count($tablesInstalled) > 0) {
194 $view->tablesInstalled = implode(', ', $tablesInstalled);
198 Access::doAsSuperUser(function () use ($self, $tablesInstalled, $view) {
200 if ($self->hasEnoughTablesToReuseDb($tablesInstalled) &&
730 public function hasEnoughTablesToReuseDb($tablesInstalled) argument
732 if (empty($tablesInstalled) || !is_array($tablesInstalled)) {
737 $baseTablesInstalled = count($tablesInstalled) - count($archiveTables);
/dports/www/matomo/piwik/core/Db/Schema/
H A DMysql.php32 private $tablesInstalled = null; variable in Piwik\\Db\\Schema\\Mysql
432 if (is_null($this->tablesInstalled)
462 $tablesInstalled = array_intersect($allMyTables, $allTables);
468 … $allTablesReallyInstalled = array_merge($tablesInstalled, $allArchiveNumeric, $allArchiveBlob);
472 $this->tablesInstalled = $allTablesReallyInstalled;
475 return $this->tablesInstalled;
/dports/www/matomo/piwik/plugins/Installation/templates/
H A DtablesCreation.twig15 <em>{{ tablesInstalled }} </em>
46 …aseTables = "{{ 'Installation_ConfirmDeleteExistingTables'|translate("["~tablesInstalled~"]") }} ";