steffen: server/kolab-horde-fbview/kolab-horde-fbview/fbview/turba/lib/ListView Rolodex.php, NONE, 1.1 Tree.php, NONE, 1.1

cvs at intevation.de cvs at intevation.de
Mon Oct 31 12:43:38 CET 2005


Author: steffen

Update of /kolabrepository/server/kolab-horde-fbview/kolab-horde-fbview/fbview/turba/lib/ListView
In directory doto:/tmp/cvs-serv18388/kolab-horde-fbview/kolab-horde-fbview/fbview/turba/lib/ListView

Added Files:
	Rolodex.php Tree.php 
Log Message:
Fbview in separate package

--- NEW FILE: Rolodex.php ---
<?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 at horde.org>
 * @version  $Revision: 1.1 $
 * @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()
    {
    }

}
?>

--- NEW FILE: Tree.php ---
<?php
// $Horde: turba/lib/ListView/Tree.php,v 1.9 2004/05/20 16:39:08 jan Exp $

require_once './lib/ListView.php';

/**
 * The Turba_ListView_Tree:: class provides a set of methods for
 * visualizing a Turba_List as a tree.
 *
 * @author   Chuck Hagenbuch <chuck at horde.org>
 * @version  $Revision: 1.1 $
 * @since Turba 0.0.1
 * @package Turba
 */
class Turba_ListView_Tree extends Turba_ListView {

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

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

}
?>





More information about the commits mailing list