steffen: server/kolab-horde-fbview/kolab-horde-fbview/fbview/turba/lib/ObjectView List.php, NONE, 1.1 PhotoID.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/ObjectView
In directory doto:/tmp/cvs-serv18388/kolab-horde-fbview/kolab-horde-fbview/fbview/turba/lib/ObjectView

Added Files:
	List.php PhotoID.php 
Log Message:
Fbview in separate package

--- NEW FILE: List.php ---
<?php
// $Horde: turba/lib/ObjectView/List.php,v 1.7 2004/05/20 16:39:09 jan Exp $

require_once './lib/ObjectView.php';

/**
 * The Turba_ObjectView_List:: class provides a set of methods for
 * visualizing a Turba_AbstractObject as a plain list of attributes.
 *
 * @author   Chuck Hagenbuch <chuck at horde.org>
 * @version  $Revision: 1.1 $
 * @since Turba 0.0.1
 * @package Turba
 */
class Turba_ObjectView_List extends Turba_ObjectView {

    /**
     * Constructs a new Turba_ObjectView_List object.
     *
     * @param $object   The object to display.
     * @param $template What template file to display this object with.
     */
    function Turba_ObjectView_List(&$object, $template)
    {
        $this->Turba_ObjectView($object, $template);
    }


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

}
?>

--- NEW FILE: PhotoID.php ---
<?php
// $Horde: turba/lib/ObjectView/PhotoID.php,v 1.7 2004/05/20 16:39:09 jan Exp $

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

/**
 * The Turba_ObjectView_photoID:: class provides a set of methods for
 * visualizing a Turba_AbstractObject as a drivers-license like photo id.
 *
 * @author   Chuck Hagenbuch <chuck at horde.org>
 * @version  $Revision: 1.1 $
 * @since Turba 0.0.1
 * @package Turba
 */
class Turba_ObjectView_photoID extends Turba_ObjectView {

    /**
     * Constructs a new Turba_ObjectView_photoID object.
     *
     * @param $object   The object to display.
     * @param $template What template file to display this object with.
     */
    function Turba_ObjectView_photoID(&$object, $template)
    {
        $this->Turba_ObjectView($object);
    }


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

}
?>





More information about the commits mailing list