From 85e48b669f65933d5376f9214219c7e5eb10a9e7 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Tue, 11 Apr 2017 07:13:13 +0200 Subject: The system directory has been moved to a non-public directory. After the commit e33c245d910e55b8cab407a03e669470509a705d, it is no longer necessary that the directory is publicly accessible via HTTP because all requests are running through the router. --- system/home.php | 55 ------------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 system/home.php (limited to 'system/home.php') diff --git a/system/home.php b/system/home.php deleted file mode 100644 index ce91558..0000000 --- a/system/home.php +++ /dev/null @@ -1,55 +0,0 @@ -query(sprintf($execSQL, Post\Attribute::TABLE)); - - $postIDs = $Statement->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){} - } - - $HomeTemplate = Template\Factory::build('home'); - $HomeTemplate->set('PAGINATION', [ - 'HTML' => generatePostNaviTemplate(1) - ]); - $HomeTemplate->set('LIST', [ - 'POSTS' => $posts ?? [] - ]); - - $MainTemplate = Template\Factory::build('main'); - $MainTemplate->set('HTML', $HomeTemplate); - $MainTemplate->set('HEAD', [ - 'NAME' => Application::get('BLOGMETA.HOME'), - 'DESC' => Application::get('BLOGMETA.NAME').' – '.Application::get('BLOGMETA.DESC'), - 'PERM' => Application::getURL() - ]); - - echo $MainTemplate; -} - -#=============================================================================== -# CATCH: Template\Exception -#=============================================================================== -catch(Template\Exception $Exception) { - Application::exit($Exception->getMessage()); -} -?> \ No newline at end of file -- cgit v1.2.3