From: cajus Date: Mon, 12 Nov 2007 14:15:40 +0000 (+0000) Subject: Temporary update X-Git-Url: https://git.tokkee.org/?p=gosa.git;a=commitdiff_plain;h=6b7bbaba5d1faa211d8df0bba99247b9ff2cbac2 Temporary update git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-playground@7777 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/autoload.inc b/include/autoload.inc index e85ae7e93..99f096951 100644 --- a/include/autoload.inc +++ b/include/autoload.inc @@ -2,6 +2,8 @@ /* This function needs the pre-defined class mapping from autoload-data.inc */ require_once("autoload-data.inc"); + +/* FIXME: this does not belong here */ require_once("smarty/Smarty.class.php"); /* Set BASE_DIR for the complete code as constant */ diff --git a/include/interface_GOsaGuiElement.inc b/include/interface_GOsaGuiElement.inc index 136742b2e..3859ca6ce 100644 --- a/include/interface_GOsaGuiElement.inc +++ b/include/interface_GOsaGuiElement.inc @@ -8,9 +8,18 @@ This interface describes what we need to display an element in the GUI for use with list objects. */ -interface GOsaGuiElement { +interface GOsaGuiElementInteraction { + + /** + * Allows the GOsaGuiElement to process all _POST events that are + * related to itself. + * @param string $class + * @return obj $$class + */ public function process(); + public function render(); + } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: