Advertisement
downloadtaky

part of admin-panel.php

Mar 24th, 2011
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.31 KB | None | 0 0
  1. /** Copia da qui per aggiungere un nuovo punto - start copy to add a new point on the map **/
  2. array( "name" => "Zona 1",
  3.     "type" => "section"),
  4. array( "type" => "open"),
  5. array(  "name" => "Attivare zona 1?", //Here you can choose if show the DIV or not
  6.         "desc" => "Seleziona se vuoi il primo fermaposto",
  7.         "id" => $shortname."_zona1c",
  8.         "type" => "checkbox",
  9.         "std" => "false"),
  10. array( "name" => "Zona 1 Nome",
  11.     "desc" => "Inserisci il nome del primo appartamento",
  12.     "id" => $shortname."_zona1n",//title tag of the a href linked to the div
  13.     "type" => "text",
  14.     "std" => "Nome dell'appartamento"),
  15. array( "name" => "Zona 1 Asse x",
  16.     "desc" => "Scegli dove posizionare il primo punto, se attivato asse x",
  17.     "id" => $shortname."_zona1x",// This is x-axys it add a value to css: left=function
  18.     "type" => "text",
  19.     "std" => "Left:???"),
  20. array( "name" => "Zona 1 Asse y",
  21.     "desc" => "Scegli dove posizionare il primo punto, se attivato asse y",
  22.     "id" => $shortname."_zona1y",// This is y-axys it add a value to css: bottom=function
  23.     "type" => "text",
  24.     "std" => "Top:???"),
  25. array( "name" => "Zona 1 URL",
  26.     "desc" => "Inserisci il link al post della zona 1",
  27.     "id" => $shortname."_zona1l",//This is the href
  28.     "type" => "text",
  29.     "std" => "Indirizzo del post qui"),
  30. array( "type" => "close"),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement