]> git.mxchange.org Git - hub.git/commitdiff
State interfaces prepared
authorRoland Häder <roland@mxchange.org>
Wed, 8 Jul 2009 22:38:01 +0000 (22:38 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 8 Jul 2009 22:38:01 +0000 (22:38 +0000)
.gitattributes
application/hub/interfaces/states/.htaccess [new file with mode: 0644]
application/hub/interfaces/states/class_ [new file with mode: 0644]
application/hub/interfaces/states/class_Stateable.php [new file with mode: 0644]
application/hub/interfaces/states/client/.htaccess [new file with mode: 0644]
application/hub/interfaces/states/client/class_ClientStateable.php [new file with mode: 0644]
application/hub/interfaces/states/hub/.htaccess [new file with mode: 0644]
application/hub/interfaces/states/hub/class_HubStateable.php [new file with mode: 0644]

index 5313adb66b1a37805aabeaf4e1e08abfceb42e22..21bfff9f45b50039fdb5428563af568fb9a67459 100644 (file)
@@ -24,6 +24,13 @@ application/hub/interfaces/query/.htaccess -text
 application/hub/interfaces/query/class_Queryable.php -text
 application/hub/interfaces/queues/.htaccess -text
 application/hub/interfaces/queues/class_Queueable.php -text
+application/hub/interfaces/states/.htaccess -text
+application/hub/interfaces/states/class_ -text
+application/hub/interfaces/states/class_Stateable.php -text
+application/hub/interfaces/states/client/.htaccess -text
+application/hub/interfaces/states/client/class_ClientStateable.php -text
+application/hub/interfaces/states/hub/.htaccess -text
+application/hub/interfaces/states/hub/class_HubStateable.php -text
 application/hub/loader.php -text
 application/hub/main/.htaccess -text
 application/hub/main/class_BaseHubSystem.php -text
diff --git a/application/hub/interfaces/states/.htaccess b/application/hub/interfaces/states/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/hub/interfaces/states/class_ b/application/hub/interfaces/states/class_
new file mode 100644 (file)
index 0000000..8d73e2b
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * An interface for ??? states
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface ????Stateable extends Stateable {
+}
+
+//
+?>
diff --git a/application/hub/interfaces/states/class_Stateable.php b/application/hub/interfaces/states/class_Stateable.php
new file mode 100644 (file)
index 0000000..3c205ba
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * An interface for general states
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface Stateable extends FrameworkInterface {
+}
+
+//
+?>
diff --git a/application/hub/interfaces/states/client/.htaccess b/application/hub/interfaces/states/client/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/hub/interfaces/states/client/class_ClientStateable.php b/application/hub/interfaces/states/client/class_ClientStateable.php
new file mode 100644 (file)
index 0000000..de99678
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * An interface for client states
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface ClientStateable extends Stateable {
+}
+
+//
+?>
diff --git a/application/hub/interfaces/states/hub/.htaccess b/application/hub/interfaces/states/hub/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/application/hub/interfaces/states/hub/class_HubStateable.php b/application/hub/interfaces/states/hub/class_HubStateable.php
new file mode 100644 (file)
index 0000000..47d9a78
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * An interface for hub states
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Hub Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface HubStateable extends Stateable {
+}
+
+//
+?>