Lines Matching refs:id

269             $id = $pageArray['id'];
271 $ID = $id;
283 $indexedOrNot = idx_addPage($id, true, true);
285 LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) was indexed and replicated", LogUtility::LVL_MSG_INFO);
287 LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) has an error", LogUtility::LVL_MSG_ERROR);
290 LogUtility::msg("The page {$id} ($pageCounter / $totalNumberOfPages) has an error: " . $e->getMessage(), LogUtility::LVL_MSG_ERROR);
326 'id',
348 $id = $pageArray['id'];
349 $page = MarkupPath::createMarkupFromId($id);
356 echo "Analytics Processing for the page {$id} ($pageCounter / $totalNumberOfPages)\n";
383 'id' => $id,
420 ->setQuery("select id as \"id\" from pages");
427 LogUtility::msg("Error while getting the id pages. {$e->getMessage()}");
443 $id = $row['id'];
444 if (!page_exists($id)) {
445 echo 'Page does not exist on the file system. Delete from the database (' . $id . ")\n";
447 $dbRow = DatabasePageRow::getFromDokuWikiId($id);
472 $id = $pageArray['id'];
474 $ID = $id;
475 $page = MarkupPath::createMarkupFromId($id);
477 LogUtility::msg("Processing page {$id} ($pageCounter / $totalNumberOfPages) ", LogUtility::LVL_MSG_INFO);
487 $pagesWithChanges[] = $id;
490 $pagesWithError[$id] = $message->getPlainTextContent();
493 $pagesWithOthers[$id] = $message->getPlainTextContent();
498 $pagesWithError[$id] = $e->getMessage();
514 foreach ($pagesWithError as $id => $message) {
516 LogUtility::msg("Page {$id} ($pageCounter / $totalNumberOfPages): " . $message, LogUtility::LVL_MSG_ERROR);
527 foreach ($pagesWithChanges as $id) {
529 LogUtility::msg("Page {$id} ($pageCounter / $totalNumberOfPages) ", LogUtility::LVL_MSG_ERROR);
540 foreach ($pagesWithOthers as $id => $message) {
542 LogUtility::msg("Page {$id} ($pageCounter / $totalNumberOfPages) " . $message, LogUtility::LVL_MSG_ERROR);