Exemplo n.º 1
0
 public function index()
 {
     $this->vars['postsTotal'] = Post::count();
     $this->vars['postsPublished'] = Post::isPublished()->count();
     $this->vars['postsDrafts'] = $this->vars['postsTotal'] - $this->vars['postsPublished'];
     $this->asExtension('ListController')->index();
 }