summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-09-22 15:10:03 +0200
committerneoraider <devnull@localhost>2006-09-22 15:10:03 +0200
commitdfadf61259653b09f261d3651640ae633b75c03e (patch)
treef484d23d8ab0d11c22d128c3550d6b5eab6747d6
parentc8ef6f06beafe500b85cdb252477217d9e017114 (diff)
downloadneon-dfadf61259653b09f261d3651640ae633b75c03e.tar
neon-dfadf61259653b09f261d3651640ae633b75c03e.zip
Seitenverwaltung f?r base-Typ aktualisiert.
-rw-r--r--pages/content/Pages.xml7
-rw-r--r--pages/content/Pages:Copy.xml2
-rw-r--r--pages/content/Pages:Delete.xml2
-rw-r--r--pages/content/Pages:Edit.xml2
-rw-r--r--pages/content/Pages:Handle.xml2
-rw-r--r--pages/content/Pages:New.xml2
-rw-r--r--pages/content/Pages:Privs.xml2
-rw-r--r--pages/content/Pages:Rename.xml2
8 files changed, 12 insertions, 9 deletions
diff --git a/pages/content/Pages.xml b/pages/content/Pages.xml
index fb9ef56..bbf0b07 100644
--- a/pages/content/Pages.xml
+++ b/pages/content/Pages.xml
@@ -18,7 +18,7 @@
echo '<h2>Seiten</h2>';
$type = $_GET['type'];
- if($type != 'c' && $type != 'n' && $type != 'e') $type = 'c';
+ if($type != 'c' && $type != 'n' && $type != 'e' && $type != 'b') $type = 'c';
echo 'Seitentyp: ';
echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=c') . '"';
@@ -29,7 +29,10 @@
echo '>Navigation</a> | ';
echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=e') . '"';
if($type == 'e') echo ' class="active_page_link"';
- echo '>Editor</a><br /><br />';
+ echo '>Editor</a> | ';
+ echo '<a href="' . $GLOBALS['links']->GetNeonLink('Pages', 'type=b') . '"';
+ if($type == 'b') echo ' class="active_page_link"';
+ echo '>Basis</a><br /><br />';
echo '<form method="post" action="' . $GLOBALS['links']->GetNeonLink('Pages:Handle') . '">';
diff --git a/pages/content/Pages:Copy.xml b/pages/content/Pages:Copy.xml
index 7c02aec..945ccb7 100644
--- a/pages/content/Pages:Copy.xml
+++ b/pages/content/Pages:Copy.xml
@@ -12,7 +12,7 @@
<?PHP
Uses('pages', 'links', 'util');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {
diff --git a/pages/content/Pages:Delete.xml b/pages/content/Pages:Delete.xml
index bdcb148..36ef251 100644
--- a/pages/content/Pages:Delete.xml
+++ b/pages/content/Pages:Delete.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {
diff --git a/pages/content/Pages:Edit.xml b/pages/content/Pages:Edit.xml
index 9d36d54..c8288c9 100644
--- a/pages/content/Pages:Edit.xml
+++ b/pages/content/Pages:Edit.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links', 'util');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {
diff --git a/pages/content/Pages:Handle.xml b/pages/content/Pages:Handle.xml
index 24bed6f..8d69884 100644
--- a/pages/content/Pages:Handle.xml
+++ b/pages/content/Pages:Handle.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links', 'templates');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if(isset($_POST['view'])) {
diff --git a/pages/content/Pages:New.xml b/pages/content/Pages:New.xml
index 3421ff1..2c67f69 100644
--- a/pages/content/Pages:New.xml
+++ b/pages/content/Pages:New.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links', 'util');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {
diff --git a/pages/content/Pages:Privs.xml b/pages/content/Pages:Privs.xml
index fd8658e..d75df63 100644
--- a/pages/content/Pages:Privs.xml
+++ b/pages/content/Pages:Privs.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links', 'util');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {
diff --git a/pages/content/Pages:Rename.xml b/pages/content/Pages:Rename.xml
index 35aef52..f83cff6 100644
--- a/pages/content/Pages:Rename.xml
+++ b/pages/content/Pages:Rename.xml
@@ -13,7 +13,7 @@
Uses('pages', 'links', 'util');
- if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e')
+ if($_POST['type'] != 'c' && $_POST['type'] != 'n' && $_POST['type'] != 'e' && $_POST['type'] != 'b')
exit();
if($_POST['back']) {