| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- /* event doktype */
- $eventDoktype = 100;
- // Add new page type:
- $GLOBALS['PAGES_TYPES'][$eventDoktype] = [
- 'type' => 'web',
- 'allowedTables' => '*',
- ];
- /* event doktype end */
- /* blog doktype */
- $blogDoktype = 101;
- // Add new page type:
- $GLOBALS['PAGES_TYPES'][$blogDoktype] = [
- 'type' => 'web',
- 'allowedTables' => '*',
- ];
- /* blog doktype end */
- /* blogauthor doktype */
- $blogauthorDoktype = 102;
- // Add new page type:
- $GLOBALS['PAGES_TYPES'][$blogauthorDoktype] = [
- 'type' => 'web',
- 'allowedTables' => '*',
- ];
- /* blogauthor doktype end */
- /* archive doktype start */
- $archiveDoktype = 103;
- // Add new page type:
- $GLOBALS['PAGES_TYPES'][$archiveDoktype] = [
- 'type' => 'web',
- 'allowedTables' => '*',
- ];
- /* archive doktype end */
- /* video doktype start */
- $videoDoktype = 104;
- // Add new page type:
- $GLOBALS['PAGES_TYPES'][$videoDoktype] = [
- 'type' => 'web',
- 'allowedTables' => '*',
- ];
- /* video doktype end */
|