File: PhotoID.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 (37 lines) | stat: -rw-r--r-- 884 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
37
<?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@horde.org>
 * @version  $Revision: 1.7 $
 * @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()
    {
    }

}
?>