Changeset 1567083
- Timestamp:
- 01/03/2017 12:31:19 PM (9 years ago)
- Location:
- pdf24-post-to-pdf/trunk
- Files:
-
- 7 deleted
- 19 edited
-
inc/common.php (modified) (7 diffs)
-
inc/optionsPage.php (modified) (13 diffs)
-
lang/de.php (modified) (1 diff)
-
lang/el.php (modified) (1 diff)
-
lang/en.php (modified) (1 diff)
-
lang/es.php (modified) (1 diff)
-
lang/fr.php (modified) (1 diff)
-
lang/it.php (modified) (1 diff)
-
lang/ja.php (modified) (1 diff)
-
lang/nl.php (modified) (1 diff)
-
lang/pt.php (modified) (1 diff)
-
lang/ro.php (modified) (1 diff)
-
lang/ru.php (modified) (1 diff)
-
lang/sv.php (modified) (1 diff)
-
lang/zh.php (modified) (1 diff)
-
pdf24.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
screenshot-1.png (deleted)
-
screenshot-2.png (deleted)
-
screenshot-3.png (deleted)
-
screenshot-4.png (deleted)
-
screenshot-5.png (deleted)
-
screenshot-6.png (deleted)
-
screenshot-7.png (deleted)
-
tpl/elbf.html (modified) (1 diff)
-
tpl/esbf.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pdf24-post-to-pdf/trunk/inc/common.php
r1387042 r1567083 235 235 236 236 function pdf24Plugin_getDefaultBLInfo() { 237 global $pdf24Plugin; 238 $url = 'https://'. $pdf24Plugin['useLang'] .'.pdf24.org'; 239 240 if(!isset($pdf24Plugin['blWords'])) { 241 $text = pdf24Plugin_getLangVal('blTexts'); 242 $words = preg_split('/;|\|/',$text); 243 if(count($words) == 0) { 244 $words = array('PDF Creator'); 245 } 246 pdf24Plugin_shuffle($words, pdf24Plugin_getShuffleSeed()); 247 $pdf24Plugin['blWords'] = $words; 248 $pdf24Plugin['blWordIndex'] = 0; 249 } 250 if($pdf24Plugin['blWordIndex'] >= count($pdf24Plugin['blWords'])) { 251 $pdf24Plugin['blWordIndex'] = 0; 252 } 253 $word = trim($pdf24Plugin['blWords'][$pdf24Plugin['blWordIndex']++]); 254 $l = $pdf24Plugin['useLang']; 255 if(mt_rand(0,4) != 0 && ($l == 'de' || $l == 'en')) { 256 $urlWord = str_replace(' ','-',strtolower($word)); 257 $urlWord = preg_replace('/\-\-+/','-',$urlWord); 258 $url .= '/' . urlencode($urlWord) . '.jsp'; 259 } 237 $url = 'https://www.pdf24.org'; 238 $word = 'www.pdf24.org'; 260 239 return array($word, $url); 261 240 } … … 263 242 function pdf24Plugin_queryBLinks() { 264 243 global $pdf24Plugin; 244 if(empty($pdf24Plugin['linkQueryUrl'])) { 245 return array(); 246 } 265 247 $ref = trim(pdf24Plugin_getBlogUrl()); 266 248 if($ref == '') { … … 285 267 $ip = strtolower(trim($ip)); 286 268 return $ip == 'localhost' || strpos($ip, '127.') === 0 || strpos($ip, '10.') === 0 287 || strpos($ip, '172.16.') === 0 || strpos($ip, '192.168.') === 0 ;269 || strpos($ip, '172.16.') === 0 || strpos($ip, '192.168.') === 0 || strpos($ip, '::') === 0; 288 270 } 289 271 … … 293 275 return $pdf24Plugin['bLinks']; 294 276 } 277 $lastBlQuery = get_option('pdf24Plugin_lastBLinksQueryTime'); 295 278 if(!pdf24Plugin_isPrivateIp($_SERVER['SERVER_ADDR'])) { 296 $lastQuery = get_option('pdf24Plugin_lastBLinksQueryTime'); 297 if($lastQuery === false || time() - intval($lastQuery) > 7 * 24 * 3600) { 279 if(!$lastBlQuery || time() - intval($lastBlQuery) > 7 * 24 * 3600) { 298 280 update_option('pdf24Plugin_lastBLinksQueryTime', time()); 299 281 $bLinks = pdf24Plugin_queryBLinks(); … … 302 284 } 303 285 $bLinks = get_option('pdf24Plugin_bLinks'); 304 if(!is_array($bLinks) ) {286 if(!is_array($bLinks) || !$lastBlQuery || time() - intval($lastBlQuery) > 15 * 24 * 3600) { 305 287 $bLinks = array(); 306 288 } … … 339 321 $val = $t; 340 322 } 341 } 323 } 342 324 $map[$k] = $val; 343 325 } … … 361 343 $e = '{lang_'. $v .'}'; 362 344 if(isset($map[$e]) && stripos($n, $e) !== false) { 363 $map[$e] = preg_replace ('/PDF/i', $c, $map[$e]);345 //$map[$e] = preg_replace ('/PDF/i', $c, $map[$e]); 364 346 } 365 347 } -
pdf24-post-to-pdf/trunk/inc/optionsPage.php
r635312 r1567083 209 209 } 210 210 } 211 212 213 214 function hideInfoBox() {215 document.getElementsByTagName216 document.getElementById('InfoBox').style.visibility = "hidden";217 }218 function showInfoBox(e,which) {219 var offsetx = 20;220 var offsety = 0;221 var PositionX = 0;222 var PositionY = 0;223 if (!e) var e = window.event;224 if (e.pageX || e.pageY) {225 PositionX = e.pageX;226 PositionY = e.pageY;227 }228 else if (e.clientX || e.clientY) {229 PositionX = e.clientX + document.body.scrollLeft;230 PositionY = e.clientY + document.body.scrollTop;231 }232 document.getElementById("BoxInhalte").innerHTML = Inhalte;233 document.getElementById('InfoBox').style.left = (PositionX+offsetx)+"px";234 document.getElementById('InfoBox').style.top = (PositionY+offsety)+"px";235 document.getElementById('InfoBox').style.visibility = "visible";236 }237 211 // --> 238 212 </script> … … 248 222 .cusDocTpl {width:700px; height:150px;} 249 223 .cusDocEntryTpl {width:700px; height:150px;} 250 .infoBox {display:none; position:absolute; z-index:1; background-color:#FDFEFF; border:3px solid #0090E0;}251 224 </style> 252 225 253 <div id="dddd" class="infoBox" style="width:400px; height:300px"> 254 255 </div> 256 257 <h2>PDF24 Plugin Options</h2> 226 <h1>PDF24 Plugin Options</h1> 258 227 <form name="pdf24Form" method="post" onsubmit="return pdf24_checkForm(this)"> 259 <div class="submit"> 260 <input type="submit" name="update" value="Update PDF24 Plugin Options" style="font-weight:bold;" /> 261 </div> 262 <div> 263 <h3>General</h3> 228 <div> 229 <h2>General</h2> 264 230 <div class="descr">General settings of the plugin.</div> 265 231 <table> … … 287 253 </table> 288 254 </div> 289 <div> 290 <h3>Document Options</h3> 255 256 <div> 257 <h2>Document Options</h2> 291 258 <div class="descr">Options for created PDF documents.</div> 292 259 <table> … … 299 266 <tr> 300 267 <td class="tr1">Title Text:</td> 301 <td class="tr2"><input name="docHeader" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocHeader()); ?>" /></td>268 <td class="tr2"><input type="text" name="docHeader" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocHeader()); ?>" /></td> 302 269 </tr> 303 270 <tr> … … 311 278 <tr> 312 279 <td class="tr1" height="60">Default filename:</td> 313 <td class="tr2"><input name="docDefaultFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('default')); ?>" />280 <td class="tr2"><input type="text" name="docDefaultFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('default')); ?>" /> 314 281 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}</b></small></td> 315 282 </tr> 316 283 <tr> 317 284 <td class="tr1" height="60">Filename for home page:</td> 318 <td class="tr2"><input name="docHomeFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('home')); ?>" />285 <td class="tr2"><input type="text" name="docHomeFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('home')); ?>" /> 319 286 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}</b></small></td> 320 287 </tr> 321 288 <tr> 322 289 <td class="tr1" height="60">Filename for single post pages:</td> 323 <td class="tr2"><input name="docSingleFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('single')); ?>" />290 <td class="tr2"><input type="text" name="docSingleFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('single')); ?>" /> 324 291 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {singleId}, {singleAuthor}, {singleDate}, {singleTitle}, {singleName}</b></small></td> 325 292 </tr> 326 293 <tr> 327 294 <td class="tr1" height="60">Filename for wordpress pages:</td> 328 <td class="tr2"><input name="docPageFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('page')); ?>" />295 <td class="tr2"><input type="text" name="docPageFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('page')); ?>" /> 329 296 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {pageId}, {pageAuthor}, {pageDate}, {pageTitle}, {pageName}</b></small></td> 330 297 </tr> 331 298 <tr> 332 299 <td class="tr1" height="60">Filename for category pages:</td> 333 <td class="tr2"><input name="docCategoryFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('category')); ?>" />300 <td class="tr2"><input type="text" name="docCategoryFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('category')); ?>" /> 334 301 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {catSlug}, {catName}, {catNiceName}</b></small></td> 335 302 </tr> 336 303 <tr> 337 304 <td class="tr1" height="60">Filename for search pages:</td> 338 <td class="tr2"><input name="docSearchFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('search')); ?>" />305 <td class="tr2"><input type="text" name="docSearchFilename" style="width:600px" value="<?php echo htmlspecialchars(pdf24Plugin_getDocFilename('search')); ?>" /> 339 306 <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {searchQuery},</b></small></td> 340 307 </tr> 341 308 </table> 342 309 </div> 343 <div> 344 <h3>Email Options</h3> 310 311 <div> 312 <h2>Email Options</h2> 345 313 <div class="descr">The created PDF is sent to the entered email address. You can enter your own email texts.</div> 346 314 <table> … … 374 342 </table> 375 343 </div> 344 376 345 <div> 377 346 <?php $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_cpStyle', 'styles/cp'); ?> 378 347 <script language="javascript"><?php echo $styleParms['js']; ?></script> 379 <h 3>Article Plugin</h3>348 <h2>Article Plugin</h2> 380 349 <div class="descr">This plugin displays a small box underneath or above each article to convert the article into a PDF file.</div> 381 350 <table> … … 425 394 </table> 426 395 </div> 396 427 397 <div> 428 398 <?php $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_sbpStyle', 'styles/sbp'); ?> 429 399 <script language="javascript"><?php echo $styleParms['js']; ?></script> 430 <h 3>Sidebar Plugin & Sidebar Widget Plugin</h3>400 <h2>Sidebar Plugin & Sidebar Widget Plugin</h2> 431 401 <div class="descr">This plugin adds a widget to your Wordpress blog. Look at the widget section in your wordpress admin area to put the widget into the sidebar.<br /> 432 402 You can also add the code <b><nobr><?php pdf24Plugin_sidebar(); ?></nobr></b> into a template file where the sidebar box shall be shown.</div> … … 470 440 </table> 471 441 </div> 442 472 443 <div> 473 444 <?php $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_tbpStyle', 'styles/tbp'); ?> 474 445 <script language="javascript"><?php echo $styleParms['js']; ?></script> 475 <h 3>Top Bottom Plugin</h3>446 <h2>Top Bottom Plugin</h2> 476 447 <div class="descr">This plugin displays a small box everywhere in your blog where you place some peace of code in a template of your theme.<br /> 477 448 Copy and paste the code <b><nobr><?php pdf24Plugin_topBottom(); ?></nobr></b> into the header or footer template (e.g. header.php, footer.php) where the box shall be shown.</div> … … 515 486 </table> 516 487 </div> 488 517 489 <div> 518 490 <?php $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_lpStyle', 'styles/lp'); ?> 519 491 <script language="javascript"><?php echo $styleParms['js']; ?></script> 520 <h 3>Link Plugin</h3>492 <h2>Link Plugin</h2> 521 493 <div class="descr">This plugin displays a link everywhere in your blog where you place some peace of code in a template of your theme.<br /> 522 494 Copy and paste the code <b><nobr><?php pdf24Plugin_link(); ?></nobr></b> or <b><nobr><?php pdf24Plugin_link('MY_LINK_TEXT'); ?></nobr></b> … … 562 534 </table> 563 535 </div> 536 564 537 <div> 565 538 <a name="customLang"></a> 566 <h 3>Custom language</h3>539 <h2>Custom language</h2> 567 540 <div class="descr">Here you can enter your own language elements for PDF creation boxes displayed on your pages. 568 541 Behind each box is displayed the original english text.</div> … … 580 553 </table> 581 554 </div> 555 582 556 <div> 583 557 <?php $docTpls = pdf24Plugin_getDocTpl(); ?> 584 558 <a name="customDocTpl"></a> 585 <h 3>Custom document template</h3>559 <h2>Custom document template</h2> 586 560 <div class="descr">This options gives you the possibility to customize the document template which encloses all article entries. There are some 587 561 placeholders which are replaced with the corresponding content.</div> … … 601 575 </table> 602 576 </div> 577 603 578 <div> 604 579 <?php $docEntryTpls = pdf24Plugin_getDocEntryTpl(); ?> 605 580 <a name="customDocEntryTpl"></a> 606 <h 3>Custom document entry template</h3>581 <h2>Custom document entry template</h2> 607 582 <div class="descr">This options gives you the possibility to customize the document article entry template which is a part of the document. There are some 608 583 placeholders which are replaced with the corresponding content.</div> … … 622 597 </table> 623 598 </div> 624 <div class="submit"> 625 <input type="submit" name="update" value="Update PDF24 Plugin Options" style="font-weight:bold;" /> 626 </div> 599 600 <p class="submit"> 601 <input class="button button-primary" type="submit" name="update" value="Save Changes" style="font-weight:bold;" /> 602 </p> 627 603 </form> 628 604 </div> -
pdf24-post-to-pdf/trunk/lang/de.php
r438945 r1567083 8 8 'sendArticleAsPDF' => 'Sende Artikel als PDF', 9 9 'sendArticlesAsPDF' => 'Sende Artikel als PDF', 10 'blTexts' => 'PDF | PDF erstellen | PDF Drucker | PDF Creator | PDF Download | Free PDF',11 10 'downloadArticleAsPDF' => 'Download Artikel als PDF', 12 11 'downloadArticlesAsPDF' => 'Download Artikel als PDF', -
pdf24-post-to-pdf/trunk/lang/el.php
r438945 r1567083 8 8 'sendArticleAsPDF' => 'Αποστολή του άρθρου σε μορφή PDF', 9 9 'sendArticlesAsPDF' => 'Αποστολή άρθρα σε μορφή PDF', 10 'blTexts' => 'PDF | PDF Creator | Word To PDF | PDF Converter | PDF Online',11 10 'downloadArticleAsPDF' => 'Κατεβάστε το άρθρο σε μορφή PDF', 12 11 'downloadArticlesAsPDF' => 'Download άρθρα σε μορφή PDF', -
pdf24-post-to-pdf/trunk/lang/en.php
r438945 r1567083 8 8 'sendArticleAsPDF' => 'Send article as PDF', 9 9 'sendArticlesAsPDF' => 'Send articles as PDF', 10 'blTexts' => 'PDF | PDF Creator | Create PDF | PDF Printer | PDF Download | Free PDF',11 10 'downloadArticleAsPDF' => 'Download article as PDF', 12 11 'downloadArticlesAsPDF' => 'Download articles as PDF', -
pdf24-post-to-pdf/trunk/lang/es.php
r438945 r1567083 8 8 'sendArticleAsPDF' => 'Enviar artículo en formato PDF', 9 9 'sendArticlesAsPDF' => 'Enviar artículos en formato PDF', 10 'blTexts' => 'PDF | PDF Creator | Crear PDF | PDF Printer | PDF Download',11 10 'downloadArticleAsPDF' => 'Descargar artículo en formato PDF', 12 11 'downloadArticlesAsPDF' => 'Descargar artículos en formato PDF', -
pdf24-post-to-pdf/trunk/lang/fr.php
r438945 r1567083 8 8 'sendArticleAsPDF' => "Envoyer l'article en PDF", 9 9 'sendArticlesAsPDF' => "Envoyer des articles au format PDF", 10 'blTexts' => "PDF | PDF Creator | PDF Writer | Word To PDF | PDF Download",11 10 'downloadArticleAsPDF' => "Télécharger l'article au format PDF", 12 11 'downloadArticlesAsPDF' => "Articles Télécharger en PDF", -
pdf24-post-to-pdf/trunk/lang/it.php
r438945 r1567083 8 8 'sendArticleAsPDF' => "Invia l'articolo in formato PDF", 9 9 'sendArticlesAsPDF' => "Invia articoli in formato PDF", 10 'blTexts' => "PDF | PDF Creator | Free PDF | Word To PDF | PDF Download",11 10 'downloadArticleAsPDF' => "Scarica l'articolo in formato PDF", 12 11 'downloadArticlesAsPDF' => "Scarica articoli in formato PDF", -
pdf24-post-to-pdf/trunk/lang/ja.php
r303890 r1567083 8 8 'sendArticleAsPDF' => 'PDFファイルとして送信記事', 9 9 'sendArticlesAsPDF' => 'PDF形式で記事を送信する', 10 'blTexts' => 'PDF | PDFファイル作成 | PDFファイルを作成する | PDFプリンタ',11 10 'downloadArticleAsPDF' => 'PDFファイルとしてダウンロードの記事', 12 11 'downloadArticlesAsPDF' => 'PDFファイルとしてダウンロードの記事', -
pdf24-post-to-pdf/trunk/lang/nl.php
r358657 r1567083 8 8 'sendArticleAsPDF' => 'Verstuur artikel als PDF', 9 9 'sendArticlesAsPDF' => 'Verstuur artikelen als PDF', 10 'blTexts' => 'PDF | PDF Creator | Creëer PDF | PDF Printer | PDF Download',11 10 'downloadArticleAsPDF' => 'Download artikel als PDF', 12 11 'downloadArticlesAsPDF' => 'Download artkelen als PDF', -
pdf24-post-to-pdf/trunk/lang/pt.php
r438945 r1567083 8 8 'sendArticleAsPDF' => 'Enviar artigo em PDF', 9 9 'sendArticlesAsPDF' => 'Envie artigos em PDF', 10 'blTexts' => 'PDF | PDF Creator | Criar PDF | PDF Printer | PDF Download',11 10 'downloadArticleAsPDF' => 'Download do artigo em formato PDF', 12 11 'downloadArticlesAsPDF' => 'Artigos Versão em PDF', -
pdf24-post-to-pdf/trunk/lang/ro.php
r350835 r1567083 8 8 'sendArticleAsPDF' => 'Expediere articol ca PDF', 9 9 'sendArticlesAsPDF' => 'Expediere articole ca PDF', 10 'blTexts' => 'PDF | PDF Creator | Creare PDF | Printer PDF | Descarca PDF',11 10 'downloadArticleAsPDF' => 'Descarca articol ca PDF', 12 11 'downloadArticlesAsPDF' => 'Descarca articole ca PDF', -
pdf24-post-to-pdf/trunk/lang/ru.php
r303890 r1567083 8 8 'sendArticleAsPDF' => 'Отправить статью как PDF', 9 9 'sendArticlesAsPDF' => 'Отправить статей в PDF', 10 'blTexts' => 'PDF | PDF Printer | PDF Editor | PDF Word | PDF Download',11 10 'downloadArticleAsPDF' => 'Скачать статью в PDF', 12 11 'downloadArticlesAsPDF' => 'Скачать статьи в PDF', -
pdf24-post-to-pdf/trunk/lang/sv.php
r303890 r1567083 8 8 'sendArticleAsPDF' => 'Skicka artikeln som PDF', 9 9 'sendArticlesAsPDF' => 'Skicka artiklar som PDF', 10 'blTexts' => 'PDF | PDF Creator | PDF Word | PDF Converter | PDF online',11 10 'downloadArticleAsPDF' => 'Ladda ner artikeln som PDF', 12 11 'downloadArticlesAsPDF' => 'Ladda ner artiklar som PDF', -
pdf24-post-to-pdf/trunk/lang/zh.php
r303890 r1567083 8 8 'sendArticleAsPDF' => '发送文章为PDF', 9 9 'sendArticlesAsPDF' => '发送PDF格式的文章', 10 'blTexts' => 'PDF | PDF格式創作 | 創建PDF格式 | PDF格式打印機 | PDF下載',11 10 'downloadArticleAsPDF' => '下載文章的PDF', 12 11 'downloadArticlesAsPDF' => '文章以PDF格式下載', -
pdf24-post-to-pdf/trunk/pdf24.php
r1387042 r1567083 3 3 Plugin Name: PDF24 Article To PDF 4 4 Plugin URI: https://www.pdf24.org 5 Description: A plugin that converts articles to PDF. Visitors of your blog can make a copy of articles in form of a PDF. Contents in the PDF are linked with your blog.5 Description: A plugin that converts articles and pages to PDF. Visitors of your blog can make a copy of articles in form of a PDF. Contents in the PDF are linked with your blog. 6 6 Author: Stefan Ziegler 7 Version: 4.0.08 7 Author URI: https://www.pdf24.org 8 Version: 4.1.0 9 9 */ 10 10 -
pdf24-post-to-pdf/trunk/readme.txt
r1387042 r1567083 4 4 Tags: pdf, create pdf, convert to pdf, article to pdf, pdf plugin, pdf widget 5 5 Requires at least: 1.5.0 6 Tested up to: 4. 4.27 Stable tag: 4. 0.08 9 A plugin to create PDF files of articles in your blog.6 Tested up to: 4.7 7 Stable tag: 4.1.0 8 9 A plugin to create PDF files of articles and pages in your blog. 10 10 11 11 … … 36 36 * Supports custom fields 37 37 * Easy installation without or with minimal template changes 38 * Get likes, shares and +1 via the PDF creation progress popup 38 39 39 40 … … 116 117 117 118 == Changelog == 119 120 = 4.1.0 = 121 * Compatibility check with Wordpress 4.7 122 * Fixed language file encoding 123 * Fixed option page styles 124 * PDF creation progress popup contains like, share, +1 buttons which are connected with your blog pages and by which you can get likes, shares and +1 for your blog pages. 118 125 119 126 = 4.0.0 = -
pdf24-post-to-pdf/trunk/tpl/elbf.html
r636620 r1567083 6 6 <span class="pdf24Plugin-{styleId}-text">{lang_sendAsPDF}</span> 7 7 <span class="pdf24Plugin-{styleId}-space"> </span> 8 <input class="pdf24Plugin-{styleId}-input" style="margin: 0px;" type="text" name="sendEmailTo" value="{lang_enterEmail}" onmousedown="this.value = '';" />8 <input class="pdf24Plugin-{styleId}-input" style="margin: 0px;" type="text" name="sendEmailTo" placeholder="{lang_enterEmail}" /> 9 9 <input class="pdf24Plugin-{styleId}-submit" style="margin: 0px;" type="submit" value="{lang_send}" /> 10 10 </form> -
pdf24-post-to-pdf/trunk/tpl/esbf.html
r635312 r1567083 3 3 <form name="pdf24Form{formId}" method="post" target="{targetName}" action="{actionUrl}" onsubmit="{openTargetCode} {callbackCode}"> 4 4 {hiddenFields} 5 <div class="pdf24Plugin-{styleId}-sendto"><input type="text" name="sendEmailTo" value="{lang_enterEmail}" onmousedown="this.value = '';" /></div>5 <div class="pdf24Plugin-{styleId}-sendto"><input type="text" name="sendEmailTo" placeholder="{lang_enterEmail}" /></div> 6 6 <div class="pdf24Plugin-{styleId}-submit"><input type="submit" value="{lang_send}" /></div> 7 7 </form>
Note: See TracChangeset
for help on using the changeset viewer.