File:  [Local Repository] / db / prgsrc / drupal / modules / chgk_db / classes / DbPackage / DbPackageGroup.class.php
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Sat Apr 24 21:45:51 2010 UTC (14 years ago) by roma7
Branches: MAIN
CVS tags: HEAD
Version 2 big update

<?php

class DbPackageGroup extends DbPackage {
  protected $children = FALSE;
  public function getFb2() {
    return FALSE;
  }

  public function getHtmlContent() {
    $this->loadChildren();
    $result='<ul>';
    foreach ($this->getChildren() as $child) {
      $result .= "<li>";
      $result .= $child->getHtmlLinkForList();
      $result .= "</li>";
    }
    $result.="</ul>";
    return $result;
    return theme('chgk_db_champ_full', $this);  
  }
  
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>