예제 #1
0
파일: Posts.php 프로젝트: zrosiak/fields
 public function index()
 {
     $this->vars['postsTotal'] = Post::count();
     $this->vars['postsPublished'] = Post::published()->count();
     $this->vars['postsExpired'] = Post::expired()->count();
     $this->vars['postsDrafts'] = $this->vars['postsTotal'] - $this->vars['postsPublished'] - $this->vars['postsExpired'];
     $this->asExtension('ListController')->index();
 }