Example #1
0
 /**
  * Return a list of articles in this category
  * Returns an array of rex_article objects sorted by $priority.
  *
  * If $ignore_offlines is set to TRUE,
  * all articles with status 0 will be
  * excempt from this list!
  *
  * @param bool $ignoreOfflines
  *
  * @return rex_article[]
  */
 public function getArticles($ignoreOfflines = false)
 {
     return rex_article::getChildElements($this->id, 'alist', $ignoreOfflines, $this->clang_id);
 }