Lines Matching refs:rowId
205 public static function createFromRowId(string $rowId): DatabasePageRow argument
210 $row = $databasePage->getDatabaseRowFromRowId($rowId);
407 $rowId = $this->getRowId();
410 ->setQueryParametrized('delete from pages where rowid = ?', [$rowId]);
414 …deleting the page ({$this->markupPath}) from the database with the rowid $rowId", self::CANONICAL,…
596 $rowId = $this->getRowId();
597 if ($rowId !== null) {
603 $values[] = $rowId;
936 $rowId = $rows[0][DokuwikiId::DOKUWIKI_ID_ATTRIBUTE];
937 $this->checkCollision($rowId, $pageIdAttribute, $pageIdValue);
1095 $rowId = $row[self::ROWID] ?? null;
1096 if ($rowId === null) {
1102 $duplicateRow = DatabasePageRow::createFromRowId($rowId);
1105 …ility::warning("The duplicate page ($duplicateMarkupPath) does not exists. Delete Row ({$rowId})");
1327 private function getDatabaseRowFromRowId(string $rowId) argument
1333 ->setQueryParametrized($query, [$rowId]);
1340 …throw new ExceptionRuntimeInternal("Error while retrieving the object by rowid ($rowId)", self::CA…
1348 throw new ExceptionNotFound("No object by row id ($rowId)");
1352 …new ExceptionRuntimeInternal("Too much record ($rowCount) for the rowid ($rowId)", self::CANONICAL…