cmc-sales/views/product_attachments/add.ctp
Karl Cordes 4347aee5f0 Changes
2009-11-04 17:12:12 +11:00

15 lines
546 B
PHP
Executable file

<?php
echo $form->create('ProductAttachment', array('action' => 'add/productid:'.$product['Product']['id'], 'type' => 'file'));
echo '<fieldset>';
echo'<legend>';
__('Add File to '.$product['Principle']['name'].' '.$product['Product']['title']);
echo '</legend>';
echo $form->file('File');
echo $form->input('description');
echo $form->input('product_id', array('type'=>'hidden', 'value' => $product['Product']['id']));
//echo $form->submit('Upload');
echo $form->end('Upload');
echo '</fieldset>';
?>
<?php print_r($product); ?>