Code

Updated template usage
[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 GOsaGuiElementInteraction {
13   /**
14    * Allows the GOsaGuiElement to process all _POST events that are
15    * related to itself.
16    * @param string $class
17    * @return obj $$class
18    */
19   public function process();
21   public function render();
23 }
25 // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
26 ?>