| 1 | <!-- |
|---|
| 2 | Plugin Name: Psli-BingMaps |
|---|
| 3 | Author: psli |
|---|
| 4 | --> |
|---|
| 5 | <div class="titrePage"> |
|---|
| 6 | <h2>Psli-BingMaps</h2> |
|---|
| 7 | </div> |
|---|
| 8 | |
|---|
| 9 | <form action="" method="post"> |
|---|
| 10 | <input type="hidden" name="hiddencategory" value="{$HIDDENCATEGORY}" /> |
|---|
| 11 | <!-- ***************************************************************************************************** --> |
|---|
| 12 | <!-- ***************************************************************************************************** --> |
|---|
| 13 | <!-- ***************************************************************************************************** --> |
|---|
| 14 | <!-- ***************************************************************************************************** --> |
|---|
| 15 | <table style="width:100%;"> |
|---|
| 16 | <colgroup> |
|---|
| 17 | <col width="200px" > |
|---|
| 18 | <col width="*" > |
|---|
| 19 | </colgroup> |
|---|
| 20 | <tr> |
|---|
| 21 | <td align="right"> |
|---|
| 22 | {'Select a Category'|@translate} : |
|---|
| 23 | </td> |
|---|
| 24 | <td> |
|---|
| 25 | <select name="categorySelected" style="width:300px;"> |
|---|
| 26 | {html_options options=$category_select_selected} |
|---|
| 27 | {html_options options=$category_select} |
|---|
| 28 | </select> |
|---|
| 29 | <input type="submit" name="open" value="{'Open this category'|@translate}" style="width:140px;" /> |
|---|
| 30 | </td> |
|---|
| 31 | </tr> |
|---|
| 32 | </table> |
|---|
| 33 | |
|---|
| 34 | <!-- ***************************************************************************************************** --> |
|---|
| 35 | <!-- ***************************************************************************************************** --> |
|---|
| 36 | <!-- ***************************************************************************************************** --> |
|---|
| 37 | <!-- ***************************************************************************************************** --> |
|---|
| 38 | <fieldset id="tableData" style="display:none;"> |
|---|
| 39 | <legend>{$TITLE}</legend> |
|---|
| 40 | <table style="margin-top:10px;width:95%;"> |
|---|
| 41 | <colgroup> |
|---|
| 42 | <col width="172px" > |
|---|
| 43 | <col width="470px" > |
|---|
| 44 | <col width="130px" > |
|---|
| 45 | <col width="*" > |
|---|
| 46 | </colgroup> |
|---|
| 47 | <tr> |
|---|
| 48 | <td align="right">{'Added pictures'|@translate} :</td> |
|---|
| 49 | <td> |
|---|
| 50 | {$NEWPICTURES} |
|---|
| 51 | </td> |
|---|
| 52 | <td><input type="submit" name="save" value="{'Submit'|@translate}" style="width:100px;margin-bottom:5px;" /></td> |
|---|
| 53 | <td rowspan="4" style="text-align:left;vertical-align:top;" > |
|---|
| 54 | <fieldset style="height:100%"> |
|---|
| 55 | <legend>{'Associated map'|@translate}</legend> |
|---|
| 56 | <table style="width:100%;text-align:left;"> |
|---|
| 57 | {$ASSOCIATEDMAP} |
|---|
| 58 | </table> |
|---|
| 59 | </fieldset> |
|---|
| 60 | <td> |
|---|
| 61 | </tr> |
|---|
| 62 | <tr> |
|---|
| 63 | <td align="right">{'Modified pictures'|@translate} :</td> |
|---|
| 64 | <td> |
|---|
| 65 | {$UPDATEDPICTURES} |
|---|
| 66 | </td> |
|---|
| 67 | </tr> |
|---|
| 68 | <tr> |
|---|
| 69 | <td align="right">{'Zoom minimum'|@translate} :</td> |
|---|
| 70 | <td> |
|---|
| 71 | <input id="zoommin" type="text" name="zoommin" value="{$ZOOMMIN}" style="width:398px;margin-right:5px;" maxlength="2"> |
|---|
| 72 | </td> |
|---|
| 73 | </tr> |
|---|
| 74 | <tr> |
|---|
| 75 | <td align="right">{'Zoom maximum'|@translate} :</td> |
|---|
| 76 | <td> |
|---|
| 77 | <input id="zoommax" type="text" name="zoommax" value="{$ZOOMMAX}" style="width:398px;margin-right:5px;" maxlength="2"> |
|---|
| 78 | </td> |
|---|
| 79 | </tr> |
|---|
| 80 | </table> |
|---|
| 81 | </fieldset> |
|---|
| 82 | <script> |
|---|
| 83 | document.getElementById("tableData").style.display='{$DISPLAY}'; |
|---|
| 84 | </script> |
|---|
| 85 | </form> |
|---|