summaryrefslogtreecommitdiffstats
path: root/application/models/DbTable
diff options
context:
space:
mode:
authorBjörn Geiger2011-06-27 15:20:03 +0200
committerBjörn Geiger2011-06-27 15:20:03 +0200
commit3f204df0b2c88ca0407f893b0c17f8de889b614d (patch)
treea63de293700d5b8025fe58317c693dfed7bb6bbf /application/models/DbTable
parentFehler in Datenbank korrigiert (diff)
downloadpoolctrl-3f204df0b2c88ca0407f893b0c17f8de889b614d.tar.gz
poolctrl-3f204df0b2c88ca0407f893b0c17f8de889b614d.tar.xz
poolctrl-3f204df0b2c88ca0407f893b0c17f8de889b614d.zip
Datenbank Mapper hinzugefügt
Diffstat (limited to 'application/models/DbTable')
-rw-r--r--application/models/DbTable/BootOs.php20
-rw-r--r--application/models/DbTable/Client.php20
-rw-r--r--application/models/DbTable/Config.php20
-rw-r--r--application/models/DbTable/Event.php20
-rw-r--r--application/models/DbTable/Eventreport.php20
-rw-r--r--application/models/DbTable/Group.php20
-rw-r--r--application/models/DbTable/GroupGroups.php20
-rw-r--r--application/models/DbTable/Membership.php20
-rw-r--r--application/models/DbTable/Person.php20
-rw-r--r--application/models/DbTable/Pool.php20
-rw-r--r--application/models/DbTable/PoolEntries.php20
11 files changed, 220 insertions, 0 deletions
diff --git a/application/models/DbTable/BootOs.php b/application/models/DbTable/BootOs.php
new file mode 100644
index 0000000..a61167a
--- /dev/null
+++ b/application/models/DbTable/BootOs.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_BootOs extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_bootos';
+
+
+}
+
diff --git a/application/models/DbTable/Client.php b/application/models/DbTable/Client.php
new file mode 100644
index 0000000..59d71a1
--- /dev/null
+++ b/application/models/DbTable/Client.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Client extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_client';
+
+
+}
+
diff --git a/application/models/DbTable/Config.php b/application/models/DbTable/Config.php
new file mode 100644
index 0000000..56b6a41
--- /dev/null
+++ b/application/models/DbTable/Config.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Config extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_config';
+
+
+}
+
diff --git a/application/models/DbTable/Event.php b/application/models/DbTable/Event.php
new file mode 100644
index 0000000..aec4dbf
--- /dev/null
+++ b/application/models/DbTable/Event.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Event extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'poolctrl_event';
+
+
+}
+
diff --git a/application/models/DbTable/Eventreport.php b/application/models/DbTable/Eventreport.php
new file mode 100644
index 0000000..6107889
--- /dev/null
+++ b/application/models/DbTable/Eventreport.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Eventreport extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'poolctrl_eventreport';
+
+
+}
+
diff --git a/application/models/DbTable/Group.php b/application/models/DbTable/Group.php
new file mode 100644
index 0000000..d31d93a
--- /dev/null
+++ b/application/models/DbTable/Group.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Group extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_group';
+
+
+}
+
diff --git a/application/models/DbTable/GroupGroups.php b/application/models/DbTable/GroupGroups.php
new file mode 100644
index 0000000..bd7c7c4
--- /dev/null
+++ b/application/models/DbTable/GroupGroups.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_GroupGroups extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_groupgroups';
+
+
+}
+
diff --git a/application/models/DbTable/Membership.php b/application/models/DbTable/Membership.php
new file mode 100644
index 0000000..cc1d4cc
--- /dev/null
+++ b/application/models/DbTable/Membership.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Membership extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_membership';
+
+
+}
+
diff --git a/application/models/DbTable/Person.php b/application/models/DbTable/Person.php
new file mode 100644
index 0000000..132e8b6
--- /dev/null
+++ b/application/models/DbTable/Person.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Person extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_person';
+
+
+}
+
diff --git a/application/models/DbTable/Pool.php b/application/models/DbTable/Pool.php
new file mode 100644
index 0000000..9650166
--- /dev/null
+++ b/application/models/DbTable/Pool.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_Pool extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_pool';
+
+
+}
+
diff --git a/application/models/DbTable/PoolEntries.php b/application/models/DbTable/PoolEntries.php
new file mode 100644
index 0000000..275f443
--- /dev/null
+++ b/application/models/DbTable/PoolEntries.php
@@ -0,0 +1,20 @@
+<?php
+/*
+ * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
+ * This program is free software distributed under the GPL version 2.
+ * See http://gpl.openslx.org/
+ *
+ * If you have any feedback please consult http://feedback.openslx.org/ and
+ * send your suggestions, praise, or complaints to feedback@openslx.org
+ *
+ * General information about OpenSLX can be found at http://openslx.org/
+ */
+
+class Application_Model_DbTable_PoolEntries extends Zend_Db_Table_Abstract
+{
+
+ protected $_name = 'pbs_poolentries';
+
+
+}
+