diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-19 22:10:52 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-19 22:10:52 +0000 | 
| commit | 759f536ae8a94ec5cce173fd00855aa39f0dbf3a (patch) | |
| tree | 47757058638952d70185bbc5c0dcd153ed0212f8 /h-source/Application/Views/form.php | |
| parent | c91e85da877b40c1857c0d900dff11257c3e436f (diff) | |
h-source:added preview button for the description entry and for the wiki pages
Diffstat (limited to 'h-source/Application/Views/form.php')
| -rw-r--r-- | h-source/Application/Views/form.php | 13 | 
1 files changed, 11 insertions, 2 deletions
diff --git a/h-source/Application/Views/form.php b/h-source/Application/Views/form.php index a5c3dd5..f7d61eb 100644 --- a/h-source/Application/Views/form.php +++ b/h-source/Application/Views/form.php @@ -117,18 +117,27 @@  					<div class="entry_label hidden_x_explorer"><?php echo gtext("free driver used");?> (<?php echo gtext("see the help page or leave blank if you are not sure");?>):</div>  					<?php echo Html_Form::input('driver',$values['driver'],'input_entry');?>  				</div> -				 +  				<div class="form_entry">  					<div class="entry_label"><?php echo gtext("Description: (write here all the useful information)");?><br /><a href="<?php echo $this->baseUrl."/help/index/$lang#wiki-syntax";?>"><?php echo gtext("discover all the wiki tags");?></a></div>  					<?php if (strcmp($this->controller,'threegcards') === 0 ) { ?>  					<!--if it is a 3G-card-->  					<div class="isp_notice"><?php echo gtext("Please specify in the below description entry the Internet Service Provider (ISP) and the country where the service is provided");?></div>  					<?php } ?> +					 +					<?php if (isset($descriptionPreview)) { ?> +					<div class="description_preview_title"><?php echo gtext("Description entry preview");?>:</div> +					<div class="description_preview"> +						<?php echo decodeWikiText($descriptionPreview); ?> +					</div> +					<?php } ?> +					  					<?php echo Html_Form::textarea('description',$values['description'],'textarea_entry','bb_code');?>  				</div>  				<?php echo $hiddenInput;?> -				 + +				<input type="submit" name="previewAction" value="Preview">  				<input type="submit" name="<?php echo $submitName;?>" value="Save">  				<div class="mandatory_fields_notice">  | 
