Example #1
0
 /**
  * retrieves all articles assigned to this article category
  *
  * @return array
  */
 public function getArticles()
 {
     if (is_null($this->articles)) {
         $this->articles = Article::getArticlesForCategory($this);
     }
     return $this->articles;
 }