ISPConfig module for simplify the creation of websites and DNS zones in a only step
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

58 řádky
1.0 KiB

  1. <?php
  2. /*
  3. Datatypes:
  4. - INTEGER
  5. - DOUBLE
  6. - CURRENCY
  7. - VARCHAR
  8. - TEXT
  9. - DATE
  10. */
  11. // Name of the list
  12. $liste["name"] = "wizard_template";
  13. // Database table
  14. $liste["table"] = "wizard_template";
  15. // Index index field of the database table
  16. $liste["table_idx"] = "template_id";
  17. // Search Field Prefix
  18. $liste["search_prefix"] = "search_";
  19. // Records per page
  20. $liste["records_per_page"] = "15";
  21. // Script File of the list
  22. $liste["file"] = "template_list.php";
  23. // Script file of the edit form
  24. $liste["edit_file"] = "template_edit.php";
  25. // Script File of the delete script
  26. $liste["delete_file"] = "template_del.php";
  27. // Paging Template
  28. $liste["paging_tpl"] = "templates/paging.tpl.htm";
  29. // Enable auth
  30. $liste["auth"] = "yes";
  31. /*****************************************************
  32. * Suchfelder
  33. *****************************************************/
  34. $liste["item"][] = array( 'field' => "template_name",
  35. 'datatype' => "VARCHAR",
  36. 'formtype' => "TEXT",
  37. 'op' => "like",
  38. 'prefix' => "%",
  39. 'suffix' => "%",
  40. 'width' => "",
  41. 'value' => "");