aboutsummaryrefslogtreecommitdiffstats
path: root/admin/post
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2018-04-01 17:06:20 +0200
committerThomas Lange <code@nerdmind.de>2018-04-01 17:06:20 +0200
commit36965226acd25178ce3d28633aadc1749f85b9f2 (patch)
tree55fccdaf919b18809f9143eac051185fe977cfc3 /admin/post
parent2a017afea40941f6cc18208a6f595ee129ae143c (diff)
downloadblog-36965226acd25178ce3d28633aadc1749f85b9f2.tar.gz
blog-36965226acd25178ce3d28633aadc1749f85b9f2.tar.xz
blog-36965226acd25178ce3d28633aadc1749f85b9f2.zip
Replace method calls "getSearchResultIDs" with "getSearchResults"
This commit replaces the method calls of "Item::getSearchResultIDs" with "Item::getSearchResults". In addition, the associated Item instances (Page or Post) are therefore now created with "Factory::buildByAttribute" instead of "Factory::build" (because "getSearchResults" returns an array of Attribute instances while "getSearchResultIDs" had returned an array of unique item IDs without attribute data).
Diffstat (limited to 'admin/post')
-rw-r--r--admin/post/search.php16
1 files changed, 7 insertions, 9 deletions
diff --git a/admin/post/search.php b/admin/post/search.php
index c2c83ca..ac472f8 100644
--- a/admin/post/search.php
+++ b/admin/post/search.php
@@ -14,17 +14,15 @@ require '../../core/application.php';
# IF: Handle search request
#===============================================================================
if($search = HTTP::GET('q')) {
- if($postIDs = Post\Item::getSearchResultIDs($search, [NULL, NULL, NULL], $Database)) {
- foreach($postIDs as $postID) {
- try {
- $Post = Post\Factory::build($postID);
- $User = User\Factory::build($Post->attr('user'));
+ foreach(Post\Item::getSearchResults($search, [NULL, NULL, NULL], $Database) as $Attribute) {
+ try {
+ $Post = Post\Factory::buildByAttribute($Attribute);
+ $User = User\Factory::build($Post->attr('user'));
- $posts[] = generatePostItemTemplate($Post, $User);
- }
- catch(Post\Exception $Exception){}
- catch(User\Exception $Exception){}
+ $posts[] = generatePostItemTemplate($Post, $User);
}
+ catch(Post\Exception $Exception){}
+ catch(User\Exception $Exception){}
}
}