bludit/bl-kernel/ajax/get-published.php

33 lines
882 B
PHP
Raw Normal View History

2018-05-14 00:00:10 +02:00
<?php defined('BLUDIT') or die('Bludit CMS.');
header('Content-Type: application/json');
// $_GET
// ----------------------------------------------------------------------------
// (string) $_GET['query']
$query = isset($_GET['query']) ? Text::lowercase($_GET['query']) : false;
// ----------------------------------------------------------------------------
if ($query===false) {
2019-01-31 20:07:59 +01:00
ajaxResponse(1, 'Invalid query.');
2018-05-14 00:00:10 +02:00
}
2018-12-31 10:31:51 +01:00
$tmp = array();
$published = $pages->getPublishedDB();
$statics = $pages->getStaticDB();
$pagesKey = array_merge($published, $statics);
foreach ($pagesKey as $pageKey) {
try {
$page = new Page($pageKey);
if ($page->isParent()) {
$lowerTitle = Text::lowercase($page->title());
if (Text::stringContains($lowerTitle, $query)) {
$tmp[$page->title()] = $page->key();
}
}
} catch (Exception $e) {
// continue
2018-05-14 00:00:10 +02:00
}
}
exit (json_encode($tmp));
2018-12-31 10:35:27 +01:00
?>