summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 342219d)
raw | patch | inline | side by side (parent: 342219d)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Nov 2007 14:15:40 +0000 (14:15 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 12 Nov 2007 14:15:40 +0000 (14:15 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-playground@7777 594d385d-05f5-0310-b6e9-bd551577e9d8
include/autoload.inc | patch | blob | history | |
include/interface_GOsaGuiElement.inc | patch | blob | history |
diff --git a/include/autoload.inc b/include/autoload.inc
index e85ae7e93d7267041e21f81d628dcf5d91580715..99f096951c46f53e1c1b66cdd1b354d4d24890b2 100644 (file)
--- a/include/autoload.inc
+++ b/include/autoload.inc
/* 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 */
index 136742b2eb69e69b9330e713560ef2ca03f78761..3859ca6ceba7a849a5c5ebc927aa19faafd46102 100644 (file)
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: