Code

136742b2eb69e69b9330e713560ef2ca03f78761
[gosa.git] / include / interface_GOsaGuiElement.inc
1 <?php
3 /*! \brief   Interface for GOsaGuiElement objects.
4     \author  Cajus Pollmeier <pollmeier@gonicus.de>
5     \version 1.00
6     \date    2007/11/02
8     This interface describes what we need to display an element in the GUI
9     for use with list objects.
10  */
11 interface GOsaGuiElement {
12   public function process();
13   public function render();
14 }
16 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
17 ?>