Plugin Directory

Changeset 1567083


Ignore:
Timestamp:
01/03/2017 12:31:19 PM (9 years ago)
Author:
pdf24
Message:

Final version 4.1

Location:
pdf24-post-to-pdf/trunk
Files:
7 deleted
19 edited

Legend:

Unmodified
Added
Removed
  • pdf24-post-to-pdf/trunk/inc/common.php

    r1387042 r1567083  
    235235
    236236function 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';
    260239    return array($word, $url);
    261240}
     
    263242function pdf24Plugin_queryBLinks() {
    264243    global $pdf24Plugin;
     244    if(empty($pdf24Plugin['linkQueryUrl'])) {
     245        return array();
     246    }
    265247    $ref = trim(pdf24Plugin_getBlogUrl());
    266248    if($ref == '') {
     
    285267    $ip = strtolower(trim($ip));
    286268    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;
    288270}
    289271
     
    293275        return $pdf24Plugin['bLinks'];
    294276    }
     277    $lastBlQuery = get_option('pdf24Plugin_lastBLinksQueryTime');
    295278    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) {
    298280            update_option('pdf24Plugin_lastBLinksQueryTime', time());
    299281            $bLinks = pdf24Plugin_queryBLinks();
     
    302284    }
    303285    $bLinks = get_option('pdf24Plugin_bLinks');
    304     if(!is_array($bLinks)) {
     286    if(!is_array($bLinks) || !$lastBlQuery || time() - intval($lastBlQuery) > 15 * 24 * 3600) {
    305287        $bLinks = array();
    306288    }
     
    339321                $val = $t;
    340322            }
    341         }       
     323        }
    342324        $map[$k] = $val;
    343325    }
     
    361343        $e = '{lang_'. $v .'}';
    362344        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]);
    364346        }
    365347    }
  • pdf24-post-to-pdf/trunk/inc/optionsPage.php

    r635312 r1567083  
    209209    }
    210210}
    211 
    212 
    213 
    214 function hideInfoBox() {
    215     document.getElementsByTagName
    216     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 }
    237211// -->
    238212</script>
     
    248222    .cusDocTpl {width:700px; height:150px;}
    249223    .cusDocEntryTpl {width:700px; height:150px;}
    250     .infoBox {display:none; position:absolute; z-index:1; background-color:#FDFEFF; border:3px solid #0090E0;}
    251224</style>
    252225
    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>
    258227<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>
    264230        <div class="descr">General settings of the plugin.</div>
    265231        <table>
     
    287253        </table>
    288254    </div>
    289     <div>
    290         <h3>Document Options</h3>
     255   
     256    <div>
     257        <h2>Document Options</h2>
    291258        <div class="descr">Options for created PDF documents.</div>
    292259        <table>
     
    299266        <tr>
    300267            <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>
    302269        </tr>
    303270        <tr>
     
    311278        <tr>
    312279            <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')); ?>" />
    314281            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}</b></small></td>
    315282        </tr>
    316283        <tr>
    317284            <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')); ?>" />
    319286            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}</b></small></td>
    320287        </tr>
    321288        <tr>
    322289            <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')); ?>" />
    324291            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {singleId}, {singleAuthor}, {singleDate}, {singleTitle}, {singleName}</b></small></td>
    325292        </tr>
    326293        <tr>
    327294            <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')); ?>" />
    329296            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {pageId}, {pageAuthor}, {pageDate}, {pageTitle}, {pageName}</b></small></td>
    330297        </tr>
    331298        <tr>
    332299            <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')); ?>" />
    334301            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {catSlug}, {catName}, {catNiceName}</b></small></td>
    335302        </tr>
    336303        <tr>
    337304            <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')); ?>" />
    339306            <br /><small>Allowed placeholders: <b>{blogName}, {date:FORMAT}, {searchQuery},</b></small></td>
    340307        </tr>
    341308        </table>
    342309    </div>
    343     <div>
    344         <h3>Email Options</h3> 
     310   
     311    <div>
     312        <h2>Email Options</h2> 
    345313        <div class="descr">The created PDF is sent to the entered email address. You can enter your own email texts.</div>
    346314        <table>
     
    374342        </table>
    375343    </div>
     344   
    376345    <div>
    377346        <?php  $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_cpStyle', 'styles/cp'); ?>
    378347        <script language="javascript"><?php  echo $styleParms['js']; ?></script>
    379         <h3>Article Plugin</h3>
     348        <h2>Article Plugin</h2>
    380349        <div class="descr">This plugin displays a small box underneath or above each article to convert the article into a PDF file.</div>
    381350        <table>
     
    425394        </table>               
    426395    </div>
     396   
    427397    <div>
    428398        <?php  $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_sbpStyle', 'styles/sbp'); ?>
    429399        <script language="javascript"><?php  echo $styleParms['js']; ?></script>
    430         <h3>Sidebar Plugin & Sidebar Widget Plugin</h3>
     400        <h2>Sidebar Plugin & Sidebar Widget Plugin</h2>
    431401        <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 />
    432402        You can also add the code <b><nobr>&lt;?php pdf24Plugin_sidebar(); ?&gt;</nobr></b> into a template file where the sidebar box shall be shown.</div>           
     
    470440        </table>
    471441    </div>
     442   
    472443    <div>
    473444        <?php  $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_tbpStyle', 'styles/tbp'); ?>
    474445        <script language="javascript"><?php  echo $styleParms['js']; ?></script>
    475         <h3>Top Bottom Plugin</h3>
     446        <h2>Top Bottom Plugin</h2>
    476447        <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 />
    477448        Copy and paste the code <b><nobr>&lt;?php pdf24Plugin_topBottom(); ?&gt;</nobr></b> into the header or footer template (e.g. header.php, footer.php) where the box shall be shown.</div>
     
    515486        </table>
    516487    </div>
     488   
    517489    <div>
    518490        <?php  $styleParms = pdf24Plugin_getStyleParams('pdf24Plugin_lpStyle', 'styles/lp'); ?>
    519491        <script language="javascript"><?php  echo $styleParms['js']; ?></script>
    520         <h3>Link Plugin</h3>
     492        <h2>Link Plugin</h2>
    521493        <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 />
    522494        Copy and paste the code <b><nobr>&lt;?php pdf24Plugin_link(); ?&gt;</nobr></b> or <b><nobr>&lt;?php pdf24Plugin_link('MY_LINK_TEXT'); ?&gt;</nobr></b>
     
    562534        </table>
    563535    </div>
     536   
    564537    <div>
    565538        <a name="customLang"></a>
    566         <h3>Custom language</h3>
     539        <h2>Custom language</h2>
    567540        <div class="descr">Here you can enter your own language elements for PDF creation boxes displayed on your pages.
    568541        Behind each box is displayed the original english text.</div>
     
    580553        </table>
    581554    </div>
     555   
    582556    <div>
    583557        <?php  $docTpls = pdf24Plugin_getDocTpl(); ?>
    584558        <a name="customDocTpl"></a>
    585         <h3>Custom document template</h3>
     559        <h2>Custom document template</h2>
    586560        <div class="descr">This options gives you the possibility to customize the document template which encloses all article entries. There are some
    587561        placeholders which are replaced with the corresponding content.</div>
     
    601575        </table>
    602576    </div>
     577   
    603578    <div>
    604579        <?php  $docEntryTpls = pdf24Plugin_getDocEntryTpl(); ?>
    605580        <a name="customDocEntryTpl"></a>
    606         <h3>Custom document entry template</h3>
     581        <h2>Custom document entry template</h2>
    607582        <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
    608583        placeholders which are replaced with the corresponding content.</div>
     
    622597        </table>
    623598    </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>
    627603</form>   
    628604</div>
  • pdf24-post-to-pdf/trunk/lang/de.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => 'Sende Artikel als PDF',
    99    'sendArticlesAsPDF'     => 'Sende Artikel als PDF',
    10     'blTexts'               => 'PDF | PDF erstellen | PDF Drucker | PDF Creator | PDF Download | Free PDF',
    1110    'downloadArticleAsPDF'  => 'Download Artikel als PDF',
    1211    'downloadArticlesAsPDF' => 'Download Artikel als PDF',
  • pdf24-post-to-pdf/trunk/lang/el.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => 'Αποστολή του άρθρου σε μορφή PDF',
    99    'sendArticlesAsPDF'     => 'Αποστολή άρθρα σε μορφή PDF',
    10     'blTexts'               => 'PDF | PDF Creator | Word To PDF | PDF Converter | PDF Online',
    1110    'downloadArticleAsPDF'  => 'Κατεβάστε το άρθρο σε μορφή PDF',
    1211    'downloadArticlesAsPDF' => 'Download άρθρα σε μορφή PDF',
  • pdf24-post-to-pdf/trunk/lang/en.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => 'Send article as PDF',
    99    'sendArticlesAsPDF'     => 'Send articles as PDF',
    10     'blTexts'               => 'PDF | PDF Creator | Create PDF | PDF Printer | PDF Download | Free PDF',
    1110    'downloadArticleAsPDF'  => 'Download article as PDF',
    1211    'downloadArticlesAsPDF' => 'Download articles as PDF',
  • pdf24-post-to-pdf/trunk/lang/es.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => 'Enviar artículo en formato PDF',
    99    'sendArticlesAsPDF'     => 'Enviar artículos en formato PDF',
    10     'blTexts'               => 'PDF | PDF Creator | Crear PDF | PDF Printer | PDF Download',
    1110    'downloadArticleAsPDF'  => 'Descargar artículo en formato PDF',
    1211    'downloadArticlesAsPDF' => 'Descargar artículos en formato PDF',
  • pdf24-post-to-pdf/trunk/lang/fr.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => "Envoyer l'article en PDF",
    99    'sendArticlesAsPDF'     => "Envoyer des articles au format PDF",
    10     'blTexts'               => "PDF | PDF Creator | PDF Writer | Word To PDF | PDF Download",
    1110    'downloadArticleAsPDF'  => "Télécharger l'article au format PDF",
    1211    'downloadArticlesAsPDF' => "Articles Télécharger en PDF",
  • pdf24-post-to-pdf/trunk/lang/it.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => "Invia l'articolo in formato PDF",
    99    'sendArticlesAsPDF'     => "Invia articoli in formato PDF",
    10     'blTexts'               => "PDF | PDF Creator | Free PDF | Word To PDF | PDF Download",
    1110    'downloadArticleAsPDF'  => "Scarica l'articolo in formato PDF",
    1211    'downloadArticlesAsPDF' => "Scarica articoli in formato PDF",
  • pdf24-post-to-pdf/trunk/lang/ja.php

    r303890 r1567083  
    88    'sendArticleAsPDF'      => 'PDFファイルとして送信記事',
    99    'sendArticlesAsPDF'     => 'PDF形式で記事を送信する',
    10     'blTexts'               => 'PDF | PDFファイル作成 | PDFファイルを作成する | PDFプリンタ',
    1110    'downloadArticleAsPDF'  => 'PDFファイルとしてダウンロードの記事',
    1211    'downloadArticlesAsPDF' => 'PDFファイルとしてダウンロードの記事',
  • pdf24-post-to-pdf/trunk/lang/nl.php

    r358657 r1567083  
    88    'sendArticleAsPDF'      => 'Verstuur artikel als PDF',
    99    'sendArticlesAsPDF'     => 'Verstuur artikelen als PDF',
    10     'blTexts'               => 'PDF | PDF Creator | Creëer PDF | PDF Printer | PDF Download',
    1110    'downloadArticleAsPDF'  => 'Download artikel als PDF',
    1211    'downloadArticlesAsPDF' => 'Download artkelen als PDF',
  • pdf24-post-to-pdf/trunk/lang/pt.php

    r438945 r1567083  
    88    'sendArticleAsPDF'      => 'Enviar artigo em PDF',
    99    'sendArticlesAsPDF'     => 'Envie artigos em PDF',
    10     'blTexts'               => 'PDF | PDF Creator | Criar PDF | PDF Printer | PDF Download',
    1110    'downloadArticleAsPDF'  => 'Download do artigo em formato PDF',
    1211    'downloadArticlesAsPDF' => 'Artigos Versão em PDF',
  • pdf24-post-to-pdf/trunk/lang/ro.php

    r350835 r1567083  
    88    'sendArticleAsPDF' => 'Expediere articol ca PDF',
    99    'sendArticlesAsPDF' => 'Expediere articole ca PDF',
    10     'blTexts' => 'PDF | PDF Creator | Creare PDF | Printer PDF | Descarca PDF',
    1110    'downloadArticleAsPDF' => 'Descarca articol ca PDF',
    1211    'downloadArticlesAsPDF' => 'Descarca articole ca PDF',
  • pdf24-post-to-pdf/trunk/lang/ru.php

    r303890 r1567083  
    88    'sendArticleAsPDF'      => 'Отправить статью как PDF',
    99    'sendArticlesAsPDF'     => 'Отправить статей в PDF',
    10     'blTexts'               => 'PDF | PDF Printer | PDF Editor | PDF Word | PDF Download',
    1110    'downloadArticleAsPDF'  => 'Скачать статью в PDF',
    1211    'downloadArticlesAsPDF' => 'Скачать статьи в PDF',
  • pdf24-post-to-pdf/trunk/lang/sv.php

    r303890 r1567083  
    88    'sendArticleAsPDF'      => 'Skicka artikeln som PDF',
    99    'sendArticlesAsPDF'     => 'Skicka artiklar som PDF',
    10     'blTexts'               => 'PDF | PDF Creator | PDF Word | PDF Converter | PDF online',
    1110    'downloadArticleAsPDF'  => 'Ladda ner artikeln som PDF',
    1211    'downloadArticlesAsPDF' => 'Ladda ner artiklar som PDF',
  • pdf24-post-to-pdf/trunk/lang/zh.php

    r303890 r1567083  
    88    'sendArticleAsPDF'      => '发送文章为PDF',
    99    'sendArticlesAsPDF'     => '发送PDF格式的文章',
    10     'blTexts'               => 'PDF | PDF格式創作 | 創建PDF格式 | PDF格式打印機 | PDF下載',
    1110    'downloadArticleAsPDF'  => '下載文章的PDF',
    1211    'downloadArticlesAsPDF' => '文章以PDF格式下載',
  • pdf24-post-to-pdf/trunk/pdf24.php

    r1387042 r1567083  
    33Plugin Name: PDF24 Article To PDF
    44Plugin 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.
     5Description: 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.
    66Author: Stefan Ziegler
    7 Version: 4.0.0
    87Author URI: https://www.pdf24.org
     8Version: 4.1.0
    99*/
    1010
  • pdf24-post-to-pdf/trunk/readme.txt

    r1387042 r1567083  
    44Tags: pdf, create pdf, convert to pdf, article to pdf, pdf plugin, pdf widget
    55Requires at least: 1.5.0
    6 Tested up to: 4.4.2
    7 Stable tag: 4.0.0
    8 
    9 A plugin to create PDF files of articles in your blog.
     6Tested up to: 4.7
     7Stable tag: 4.1.0
     8
     9A plugin to create PDF files of articles and pages in your blog.
    1010
    1111
     
    3636* Supports custom fields
    3737* Easy installation without or with minimal template changes
     38* Get likes, shares and +1 via the PDF creation progress popup
    3839
    3940
     
    116117
    117118== 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.
    118125
    119126= 4.0.0 =
  • pdf24-post-to-pdf/trunk/tpl/elbf.html

    r636620 r1567083  
    66        <span class="pdf24Plugin-{styleId}-text">{lang_sendAsPDF}</span>
    77        <span class="pdf24Plugin-{styleId}-space">&nbsp;&nbsp;</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}" />
    99        <input class="pdf24Plugin-{styleId}-submit" style="margin: 0px;" type="submit" value="{lang_send}" />
    1010    </form>
  • pdf24-post-to-pdf/trunk/tpl/esbf.html

    r635312 r1567083  
    33    <form name="pdf24Form{formId}" method="post" target="{targetName}" action="{actionUrl}" onsubmit="{openTargetCode} {callbackCode}">
    44        {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>
    66        <div class="pdf24Plugin-{styleId}-submit"><input type="submit" value="{lang_send}" /></div>
    77    </form>
Note: See TracChangeset for help on using the changeset viewer.