| 22 | | <p><?php echo $html->link($html->image('admin/new.gif', array("alt"=>"Add new", "title"=>"Add new")), '#', array("onclick"=>"hU()"), false, false); ?></p> |
| | 24 | <?php |
| | 25 | echo $html->para(null, $html->link($html->image('actions/new.png', array("alt"=>"Add new", "title"=>"Add new")), '#', array("onclick"=>"hU()"), false, false)); ?> |
| 27 | | <legend>New quote</legend> |
| 28 | | <?php echo $form->labelTag('Quote/quote', 'Quote:'); ?><br /> |
| 29 | | <?php echo $html->input('Quote/quote', array("size" => 60, "maxlength"=>130)); ?> |
| 30 | | <?php echo $html->tagErrorMsg('Quote/quote', 'A quote is required.'); ?> |
| | 30 | <legend>New quote</legend |
| | 31 | <?php |
| | 32 | echo $form->input('Quote.quote', array("size" => 60, "maxlength"=>130)); |
| | 33 | echo $form->error('Quote.quote', 'A quote is required.'); |
| 32 | | <?php echo $form->labelTag('Quote/author', 'Author:') . "<br />"; ?> |
| 33 | | <?php echo $html->input('Quote/author', array("size" => 60, "maxlength"=>130)); ?> |
| 34 | | <?php echo $html->tagErrorMsg('Quote/author', 'An author is required.'); ?> |
| | 35 | echo $form->input('Quote/author', array("size" => 60, "maxlength"=>130)); |
| | 36 | echo $form->error('Quote.author', 'An author is required.'); |
| | 37 | ?> |