コード例 #1
0
 /**
  * Generates sidebar for the news index
  *
  * Currently set to display the same sidebar as NewsViewHelper
  */
 function sidebar()
 {
     //this sucks, but it's quick, well encapsulated and it works
     //my OO spidey senses tell me we need to pull sidebar generation into another class
     $newsview = new NewsViewHelper($this->content);
     return $newsview->sidebar();
 }
コード例 #2
0
 function sidebar()
 {
     //this also sucks, but again it's quick, well encapsulated and it works
     $newsview = new NewsViewHelper($this->content);
     return $newsview->sidebar();
 }