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

    1: <?php
    2: 
    3: class DbPackageRoot extends DbPackageGroup {
    4:   public function __construct() {
    5:     $row = new stdClass();
    6:     $row->Id = 0;
    7:     parent::__construct($row);
    8:   }
    9: 
   10:   public function getTitle() {
   11:     return 'Корень';
   12:   }
   13:   
   14:   public function getFullTitle() {
   15:     return 'Корень дерева турниров';
   16:   }
   17:   
   18:   
   19:   
   20:    
   21:   public function getHtmlLinkForList() {
   22:      return '';
   23:    }
   24: }
   25: 
   26: ?>

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