File: Rolodex.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 (36 lines) | stat: -rw-r--r-- 834 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
26
27
28
29
30
31
32
33
34
35
36
<?php
// $Horde: turba/lib/ListView/Rolodex.php,v 1.10 2004/05/20 16:39:08 jan Exp $

require_once TURBA_BASE . '/lib/ListView.php';

/**
 * The Turba_ListView_Rolodex:: class provides a set of methods for
 * visualizing a Turba_list as a rolodex.
 *
 * @author   Chuck Hagenbuch <chuck@horde.org>
 * @version  $Revision: 1.10 $
 * @since Turba 0.0.1
 * @package Turba
 */
class Turba_ListView_Rolodex extends Turba_ListView {

    /**
     * Constructs a new Turba_ListView_Rolodex object.
     *
     * @param $list     List of objects to display.
     * @param $template What template file to display each object with.
     */
    function Turba_ListView_Rolodex(&$list)
    {
        $this->Turba_ListView($list);
    }

    /**
     * Renders the list contents into an HTML view.
     */
    function display()
    {
    }

}
?>