ext_tables.php 937 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /* event doktype */
  3. $eventDoktype = 100;
  4. // Add new page type:
  5. $GLOBALS['PAGES_TYPES'][$eventDoktype] = [
  6. 'type' => 'web',
  7. 'allowedTables' => '*',
  8. ];
  9. /* event doktype end */
  10. /* blog doktype */
  11. $blogDoktype = 101;
  12. // Add new page type:
  13. $GLOBALS['PAGES_TYPES'][$blogDoktype] = [
  14. 'type' => 'web',
  15. 'allowedTables' => '*',
  16. ];
  17. /* blog doktype end */
  18. /* blogauthor doktype */
  19. $blogauthorDoktype = 102;
  20. // Add new page type:
  21. $GLOBALS['PAGES_TYPES'][$blogauthorDoktype] = [
  22. 'type' => 'web',
  23. 'allowedTables' => '*',
  24. ];
  25. /* blogauthor doktype end */
  26. /* archive doktype start */
  27. $archiveDoktype = 103;
  28. // Add new page type:
  29. $GLOBALS['PAGES_TYPES'][$archiveDoktype] = [
  30. 'type' => 'web',
  31. 'allowedTables' => '*',
  32. ];
  33. /* archive doktype end */
  34. /* video doktype start */
  35. $videoDoktype = 104;
  36. // Add new page type:
  37. $GLOBALS['PAGES_TYPES'][$videoDoktype] = [
  38. 'type' => 'web',
  39. 'allowedTables' => '*',
  40. ];
  41. /* video doktype end */