aboutsummaryrefslogtreecommitdiff
path: root/h-source/Examples/Views/post2
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Examples/Views/post2')
-rwxr-xr-xh-source/Examples/Views/post2/form.php28
-rwxr-xr-xh-source/Examples/Views/post2/header.php30
-rwxr-xr-xh-source/Examples/Views/post2/modify.php1
-rwxr-xr-xh-source/Examples/Views/post2/view.php1
4 files changed, 0 insertions, 60 deletions
diff --git a/h-source/Examples/Views/post2/form.php b/h-source/Examples/Views/post2/form.php
deleted file mode 100755
index 5ef5aff..0000000
--- a/h-source/Examples/Views/post2/form.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<div class='mainMenu'>
- <?php echo $topMenu;?>
-</div>
-
-<?php echo $notice; ?>
-
-<div>
- <form action='<?php echo $action;?>' method='POST'>
- <table>
- <tr>
- <td>Titolo:</td>
- <td><input type='text' name='titolo' value='<?php echo $values['titolo'];?>'></td>
- </tr>
- <tr>
- <td>Autore:</td>
- <td><input type='text' name='autore' value='<?php echo $values['autore'];?>'></td>
- </tr>
- <tr>
- <td>Titolo:</td>
- <td><textarea name='testo'><?php echo $values['testo'];?></textarea></td>
- </tr>
- <?php echo $hidden;?>
- <tr>
- <td><input type='submit' name='<?php echo $submit;?>' value='salva'></td>
- </tr>
- </table>
- </form>
-</div>
diff --git a/h-source/Examples/Views/post2/header.php b/h-source/Examples/Views/post2/header.php
deleted file mode 100755
index 0d9a131..0000000
--- a/h-source/Examples/Views/post2/header.php
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-
-<header>
-
-<title>prova</title>
-<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/style.css');?>"></style>
-<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/mainmenu.css');?>"></style>
-<link rel="stylesheet" type="text/css" href="<?php echo url::getRoot('public/css/form.css');?>"></style>
-<script type="text/javascript" src="<?php echo url::getRoot('external/jquery/jquery-1.3.2.js');?>"></script>
-
-<script>
-$(document).ready(function(){
-
- $("ul#menuBlock li").mouseover(function () {
- $(this).children().css({'display' : 'block'});
- });
-
- $("ul#menuBlock li").mouseout(function () {
- $('ul#menuBlock li ul').css({'display' : 'none'});
- });
-
-});
-</script>
-
-</header>
-
-<body>
-
-<div id="container">
-
diff --git a/h-source/Examples/Views/post2/modify.php b/h-source/Examples/Views/post2/modify.php
deleted file mode 100755
index dc948e1..0000000
--- a/h-source/Examples/Views/post2/modify.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php echo $form;?> \ No newline at end of file
diff --git a/h-source/Examples/Views/post2/view.php b/h-source/Examples/Views/post2/view.php
deleted file mode 100755
index 3f67f2f..0000000
--- a/h-source/Examples/Views/post2/view.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php echo $scaffold;?>