17 lines
331 B
PHP
17 lines
331 B
PHP
|
<?php
|
||
|
class StaticController extends ApplicationController
|
||
|
{
|
||
|
protected function init()
|
||
|
{
|
||
|
$this->setLayout('bare');
|
||
|
}
|
||
|
|
||
|
public function index()
|
||
|
{
|
||
|
if (CONFIG()->skip_homepage)
|
||
|
$this->redirectTo('post#index');
|
||
|
else
|
||
|
$this->post_count = Post::fast_count();
|
||
|
}
|
||
|
}
|