added some useful models and controllers

This commit is contained in:
Logsol 2013-07-08 21:02:22 +02:00
parent 9bb724147e
commit 1d4b2a3314
44 changed files with 6424 additions and 0 deletions

View file

@ -0,0 +1,34 @@
<div id="admin">
<h3>Produkt-Bild hinzufügen</h3>
<form action="<?php echo $this->base ?>/adminUpload/process" method="post" enctype="multipart/form-data">
<input type="hidden" name="productId" value="<?php echo $this->_getParam('productId') ?>"/>
<dl>
<dt>
Produkt
</dt>
<dd>
<?php echo $this->item['name'] ?>
</dd>
</dl>
<dl>
<dt>
Klein
</dt>
<dd>
<input type="file" value="" name="small" size="32" />
</dd>
</dl>
<dl>
<dt>
Groß
</dt>
<dd>
<input type="file" value="" name="big" size="32" />
</dd>
</dl>
<p>
<input type="submit" value="Hochladen" />
</p>
</form>
</div>

View file

@ -0,0 +1,34 @@
<div id="admin">
<h3>Produkt-Bild hinzufügen</h3>
<form action="<?php echo $this->base ?>/adminUpload/process" method="post" enctype="multipart/form-data">
<input type="hidden" name="productId" value="<?php echo $this->_getParam('productId') ?>"/>
<dl>
<dt>
Produkt
</dt>
<dd>
<?php echo $this->item['name'] ?>
</dd>
</dl>
<dl>
<dt>
Klein
</dt>
<dd>
<input type="file" value="" name="small" size="32" />
</dd>
</dl>
<dl>
<dt>
Groß
</dt>
<dd>
<input type="file" value="" name="big" size="32" />
</dd>
</dl>
<p>
<input type="submit" value="Hochladen" />
</p>
</form>
</div>

View file

@ -0,0 +1,17 @@
<div id="admin">
<h3>Hochladen</h3>
<form action="<?php echo $this->base ?>/adminUpload/process" method="post" enctype="multipart/form-data">
<input type="hidden" name="productId" value="<?php echo $this->_getParam('productId') ?>"/>
<dl>
<dt>
Datei
</dt>
<dd>
<input type="file" value="" name="myfile" size="32"/>
</dd>
</dl>
<p>
<input type="submit" value="Hochladen" />
</p>
</form>
</div>