File: Plain.php

package info (click to toggle)
turba2 2.0.2-1sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,996 kB
  • ctags: 1,071
  • sloc: php: 4,725; xml: 617; sql: 136; makefile: 62; sh: 46; perl: 17
file content (25 lines) | stat: -rw-r--r-- 566 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
// $Horde: turba/lib/List/Plain.php,v 1.10 2004/05/20 16:39:08 jan Exp $

/**
 * The Turba_List_Plain:: class provides a set of methods for
 * representing a list of Turba_AbstractObjects as a plain list.
 *
 * @author  Jon Parise <jon@csh.rit.edu>
 * @author  Chuck Hagenbuch <chuck@horde.org>
 * @version $Revision: 1.10 $
 * @since   Turba 0.0.1
 * @package Turba
 */
class Turba_List_Plain extends Turba_List {

    /**
     * Constructs a new Turba_List_plain object.
     */
    function Turba_List_Plain()
    {
        $this->Turba_List();
    }

}
?>