summaryrefslogtreecommitdiffstats
path: root/system/post/list.php
diff options
context:
space:
mode:
Diffstat (limited to 'system/post/list.php')
-rw-r--r--system/post/list.php65
1 files changed, 0 insertions, 65 deletions
diff --git a/system/post/list.php b/system/post/list.php
deleted file mode 100644
index f2edd0b..0000000
--- a/system/post/list.php
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-#===============================================================================
-# Get instances
-#===============================================================================
-$Database = Application::getDatabase();
-$Language = Application::getLanguage();
-
-$site_size = Application::get('POST.LIST_SIZE');
-$site_sort = Application::get('POST.LIST_SORT');
-
-$lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', Post\Attribute::TABLE))->fetchColumn() / $site_size);
-
-$currentSite = HTTP::GET('site') ?? 1;
-$currentSite = abs(intval($currentSite));
-
-if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) {
- Application::error404();
-}
-
-#===============================================================================
-# TRY: Template\Exception
-#===============================================================================
-try {
- $execSQL = "SELECT id FROM %s ORDER BY {$site_sort} LIMIT ".(($currentSite-1) * $site_size).", {$site_size}";
- $postIDs = $Database->query(sprintf($execSQL, Post\Attribute::TABLE))->fetchAll($Database::FETCH_COLUMN);
-
- foreach($postIDs as $postID) {
- try {
- $Post = Post\Factory::build($postID);
- $User = User\Factory::build($Post->attr('user'));
-
- $ItemTemplate = generatePostItemTemplate($Post, $User);
-
- $posts[] = $ItemTemplate;
- }
- catch(Post\Exception $Exception){}
- catch(User\Exception $Exception){}
- }
-
- $ListTemplate = Template\Factory::build('post/list');
- $ListTemplate->set('PAGINATION', [
- 'THIS' => $currentSite,
- 'LAST' => $lastSite,
- 'HTML' => generatePostNaviTemplate($currentSite)
- ]);
- $ListTemplate->set('LIST', [
- 'POSTS' => $posts ?? []
- ]);
-
- $MainTemplate = Template\Factory::build('main');
- $MainTemplate->set('HTML', $ListTemplate);
- $MainTemplate->set('HEAD', [
- 'NAME' => $Language->text('title_post_overview', $currentSite)
- ]);
-
- echo $MainTemplate;
-}
-
-#===============================================================================
-# CATCH: Template\Exception
-#===============================================================================
-catch(Template\Exception $Exception) {
- Application::exit($Exception->getMessage());
-}
-?> \ No newline at end of file