From b5cbdd6b400aa1ec77c9846e9cc8d4257f437e3c Mon Sep 17 00:00:00 2001
From: Simon
Date: Mon, 14 Mar 2011 16:09:03 +0100
Subject: Application in 3 Modules gesplittet, Dev = unsere
entwicklungsumgebung, user = die weboberfläche fr anwender mit acl etc, fbgui
= für die fbgui truppe - links in dev müssen noch angepasst werden
---
.../modules/dev/views/scripts/group/add.phtml | 4 +
.../modules/dev/views/scripts/group/delete.phtml | 6 +
.../modules/dev/views/scripts/group/edit.phtml | 10 ++
.../dev/views/scripts/group/grantperson.phtml | 11 ++
.../modules/dev/views/scripts/group/index.phtml | 35 ++++++
.../modules/dev/views/scripts/group/link.phtml | 4 +
.../dev/views/scripts/group/revokeperson.phtml | 6 +
.../modules/dev/views/scripts/group/show.phtml | 122 +++++++++++++++++++++
8 files changed, 198 insertions(+)
create mode 100644 application/modules/dev/views/scripts/group/add.phtml
create mode 100644 application/modules/dev/views/scripts/group/delete.phtml
create mode 100644 application/modules/dev/views/scripts/group/edit.phtml
create mode 100644 application/modules/dev/views/scripts/group/grantperson.phtml
create mode 100644 application/modules/dev/views/scripts/group/index.phtml
create mode 100644 application/modules/dev/views/scripts/group/link.phtml
create mode 100644 application/modules/dev/views/scripts/group/revokeperson.phtml
create mode 100644 application/modules/dev/views/scripts/group/show.phtml
(limited to 'application/modules/dev/views/scripts/group')
diff --git a/application/modules/dev/views/scripts/group/add.phtml b/application/modules/dev/views/scripts/group/add.phtml
new file mode 100644
index 0000000..4f96cf0
--- /dev/null
+++ b/application/modules/dev/views/scripts/group/add.phtml
@@ -0,0 +1,4 @@
+addForm->setAction($this->url());
+echo $this->addForm;
+?>
\ No newline at end of file
diff --git a/application/modules/dev/views/scripts/group/delete.phtml b/application/modules/dev/views/scripts/group/delete.phtml
new file mode 100644
index 0000000..fc96431
--- /dev/null
+++ b/application/modules/dev/views/scripts/group/delete.phtml
@@ -0,0 +1,6 @@
+
+
No group has been chosen.
+ addForm)) {
+ $this->addForm->setAction('/group/add');
+ echo $this->addForm;
+}
+else {
+ $this->editForm->setAction($this->url());
+ echo $this->editForm;
+}
+?>
\ No newline at end of file
diff --git a/application/modules/dev/views/scripts/group/grantperson.phtml b/application/modules/dev/views/scripts/group/grantperson.phtml
new file mode 100644
index 0000000..f15d08a
--- /dev/null
+++ b/application/modules/dev/views/scripts/group/grantperson.phtml
@@ -0,0 +1,11 @@
+
+No Request has been chosen.
+
+No Role has been chosen.
+
+
+ | Title: |
+ Functions: |
+
+ groupList as $group) {
+ ?>
+
+ | getTitle(); ?> |
+
+
+
+
+ |
+
+
+
+
+
+
+
diff --git a/application/modules/dev/views/scripts/group/link.phtml b/application/modules/dev/views/scripts/group/link.phtml
new file mode 100644
index 0000000..94ad343
--- /dev/null
+++ b/application/modules/dev/views/scripts/group/link.phtml
@@ -0,0 +1,4 @@
+linkForm->setAction($this->url());
+echo $this->linkForm;
+?>
\ No newline at end of file
diff --git a/application/modules/dev/views/scripts/group/revokeperson.phtml b/application/modules/dev/views/scripts/group/revokeperson.phtml
new file mode 100644
index 0000000..6af5564
--- /dev/null
+++ b/application/modules/dev/views/scripts/group/revokeperson.phtml
@@ -0,0 +1,6 @@
+
+No Membership has been chosen.
+
+
+
+
+
+
+
+ | Title: |
+ group->getTitle(); ?> |
+
+
+ | Description: |
+ group->getDescription(); ?> |
+
+
+
+ | Superordinated Group: |
+ parentGroup->getTitle(); ?> |
+
+
+
+ groupRequestList)) {
+ ?>
+
+Grouprequests:
+
+
+
+ | Firstname: |
+ Name: |
+ email: |
+ city: |
+ grant: |
+
+ groupRequestList as $grouprequest) {
+ $grouprequestID = $grouprequest['grouprequestID'];
+ $person = $grouprequest['person'];
+ ?>
+
+ | getFirstname(); ?> |
+ getName(); ?> |
+ getEmail(); ?> |
+ getCity(); ?> |
+
+
+ |
+
+
+
+ memberslist)) {
+ ?>
+
+Members:
+
+
+
+ | Firstname: |
+ Name: |
+ email: |
+ city: |
+ |
+
+
+ memberslist as $member) {
+ $membershipID = $member['membershipID'];
+ $person = $member['person'];
+ ?>
+
+ | getFirstname(); ?> |
+ getName(); ?> |
+ getEmail(); ?> |
+ getCity(); ?> |
+
+
+ |
+
+
+
+
+No Group has been chosen.
+ ";
+ foreach($roleList as $role) {
+ echo "";
+ }
+ echo "";
+}
\ No newline at end of file
--
cgit v1.2.3-55-g7522