var/cache/website/dev/sulu/websiteWebspaceCollectionCache.php line 41

  1. <?php
  2. use Sulu\Component\Localization\Localization;
  3. use Sulu\Component\Webspace\Manager\WebspaceCollection;
  4. use Sulu\Component\Webspace\Portal;
  5. use Sulu\Component\Webspace\PortalInformation;
  6. use Sulu\Component\Webspace\Environment;
  7. use Sulu\Component\Webspace\Security;
  8. use Sulu\Component\Webspace\Segment;
  9. use Sulu\Component\Webspace\Url;
  10. use Sulu\Component\Webspace\CustomUrl;
  11. use Sulu\Component\Webspace\Webspace;
  12. use Sulu\Component\Webspace\Navigation;
  13. use Sulu\Component\Webspace\NavigationContext;
  14. /**
  15.  * websiteWebspaceCollectionCache
  16.  *
  17.  * DO NOT EDIT
  18.  * This file is autogenerated by the Sulu Webspace component
  19.  */
  20. class websiteWebspaceCollectionCache extends WebspaceCollection
  21. {
  22.     public function __construct()
  23.     {
  24.         $webspaceRefs = array();
  25.         $portalRefs = array();
  26.         $localizationRefs = array();
  27.         $segmentRefs = array();
  28.         $portalInformationRefs = array();
  29.         // new webspace
  30.         $webspace = new Webspace();
  31.         $webspace->setKey('galilea-website');
  32.         $webspace->setName("galilea.ai");
  33.         // add localization to webspace
  34.         $localization0 = new Localization();
  35.         $localization0->setLanguage('de');
  36.         $localization0->setCountry('');
  37.         $localization0->setShadow('');
  38.         $localization0->setDefault(true);
  39.         $localization0->setXDefault('');
  40.         $localizationRefs['galilea-website_de'] = $localization0;
  41.         $webspace->addLocalization($localization0);
  42.         // add localization to webspace
  43.         $localization0 = new Localization();
  44.         $localization0->setLanguage('en');
  45.         $localization0->setCountry('');
  46.         $localization0->setShadow('');
  47.         $localization0->setDefault(false);
  48.         $localization0->setXDefault('');
  49.         $localizationRefs['galilea-website_en'] = $localization0;
  50.         $webspace->addLocalization($localization0);
  51.         // add theme
  52.         $webspace->addTemplate('search''galilea/search/search');
  53.         $webspace->addTemplate('error''galilea/error/error');
  54.         $webspace->addDefaultTemplate('page''galilea_default');
  55.         $webspace->addDefaultTemplate('home''galilea_homepage');
  56.         $webspace->addExcludedTemplate('default');
  57.         $webspace->addExcludedTemplate('homepage');
  58.         // add navigation
  59.         $navigation = new Navigation();
  60.         $navigation->addContext(new NavigationContext('main',     array(
  61.                         'title' =>     array(
  62.                         'en' => 'Main Navigation',
  63.                                 'de' => 'Hauptnavigation',
  64.                 )
  65. ,
  66.                 )
  67. ));
  68.         $navigation->addContext(new NavigationContext('header_right',     array(
  69.                         'title' =>     array(
  70.                         'en' => 'Header Right',
  71.                                 'de' => 'Kopfnavigation Rechts',
  72.                 )
  73. ,
  74.                 )
  75. ));
  76.         $navigation->addContext(new NavigationContext('footer_left',     array(
  77.                         'title' =>     array(
  78.                         'en' => 'Footernavigation Left',
  79.                                 'de' => 'Footernavigation Links',
  80.                 )
  81. ,
  82.                 )
  83. ));
  84.         $navigation->addContext(new NavigationContext('footer_middle',     array(
  85.                         'title' =>     array(
  86.                         'en' => 'Footernavigation Middle',
  87.                                 'de' => 'Footernavigation Mitte',
  88.                 )
  89. ,
  90.                 )
  91. ));
  92.         $navigation->addContext(new NavigationContext('footer_right',     array(
  93.                         'title' =>     array(
  94.                         'en' => 'Footernavigation Right',
  95.                                 'de' => 'Footernavigation Rechts',
  96.                 )
  97. ,
  98.                 )
  99. ));
  100.         $navigation->addContext(new NavigationContext('footer_bottom',     array(
  101.                         'title' =>     array(
  102.                         'en' => 'Footernavigation Bottom',
  103.                                 'de' => 'Footernavigation Boden',
  104.                 )
  105. ,
  106.                 )
  107. ));
  108.         $webspace->setNavigation($navigation);
  109.         $webspace->setResourceLocatorStrategy('tree_leaf_edit');
  110.         // new portal
  111.         $portal = new Portal();
  112.         $portal->setName('galilea.ai');
  113.         $portal->setKey('galilea-website');
  114.         $portal->setWebspace($webspace);
  115.         // add localization
  116.         $localization = new Localization();
  117.         $localization->setLanguage('de');
  118.         $localization->setCountry('');
  119.         $localization->setDefault('1');
  120.         $localization->setXDefault('');
  121.         $portal->addLocalization($localization);
  122.         // add localization
  123.         $localization = new Localization();
  124.         $localization->setLanguage('en');
  125.         $localization->setCountry('');
  126.         $localization->setDefault('');
  127.         $localization->setXDefault('');
  128.         $portal->addLocalization($localization);
  129.         // add environment
  130.         $environment = new Environment();
  131.         $environment->setType('prod');
  132.         // add environment url
  133.         $url = new Url();
  134.         $url->setUrl('www.galilea.ai/{localization}');
  135.         $url->setLanguage('de');
  136.         $url->setCountry('');
  137.         $url->setSegment('');
  138.         $url->setRedirect('');
  139.         $url->setMain(true);
  140.         $environment->addUrl($url);
  141.         // add environment url
  142.         $url = new Url();
  143.         $url->setUrl('www.galilea.ai/{localization}');
  144.         $url->setLanguage('en');
  145.         $url->setCountry('');
  146.         $url->setSegment('');
  147.         $url->setRedirect('');
  148.         $url->setMain(false);
  149.         $environment->addUrl($url);
  150.         $portal->addEnvironment($environment);
  151.         // add environment
  152.         $environment = new Environment();
  153.         $environment->setType('stage');
  154.         // add environment url
  155.         $url = new Url();
  156.         $url->setUrl('preprod-galilea-website.plan-d.cloud/{localization}');
  157.         $url->setLanguage('de');
  158.         $url->setCountry('');
  159.         $url->setSegment('');
  160.         $url->setRedirect('');
  161.         $url->setMain(true);
  162.         $environment->addUrl($url);
  163.         // add environment url
  164.         $url = new Url();
  165.         $url->setUrl('preprod-galilea-website.plan-d.cloud/{localization}');
  166.         $url->setLanguage('en');
  167.         $url->setCountry('');
  168.         $url->setSegment('');
  169.         $url->setRedirect('');
  170.         $url->setMain(false);
  171.         $environment->addUrl($url);
  172.         $portal->addEnvironment($environment);
  173.         // add environment
  174.         $environment = new Environment();
  175.         $environment->setType('test');
  176.         // add environment url
  177.         $url = new Url();
  178.         $url->setUrl('test-galilea-website.plan-d.cloud/{localization}');
  179.         $url->setLanguage('de');
  180.         $url->setCountry('');
  181.         $url->setSegment('');
  182.         $url->setRedirect('');
  183.         $url->setMain(true);
  184.         $environment->addUrl($url);
  185.         // add environment url
  186.         $url = new Url();
  187.         $url->setUrl('test-galilea-website.plan-d.cloud/{localization}');
  188.         $url->setLanguage('en');
  189.         $url->setCountry('');
  190.         $url->setSegment('');
  191.         $url->setRedirect('');
  192.         $url->setMain(false);
  193.         $environment->addUrl($url);
  194.         $portal->addEnvironment($environment);
  195.         // add environment
  196.         $environment = new Environment();
  197.         $environment->setType('dev');
  198.         // add environment url
  199.         $url = new Url();
  200.         $url->setUrl('galilea_website.localhost/{localization}');
  201.         $url->setLanguage('de');
  202.         $url->setCountry('');
  203.         $url->setSegment('');
  204.         $url->setRedirect('');
  205.         $url->setMain(true);
  206.         $environment->addUrl($url);
  207.         // add environment url
  208.         $url = new Url();
  209.         $url->setUrl('galilea_website.localhost/{localization}');
  210.         $url->setLanguage('en');
  211.         $url->setCountry('');
  212.         $url->setSegment('');
  213.         $url->setRedirect('');
  214.         $url->setMain(false);
  215.         $environment->addUrl($url);
  216.         // add environment url
  217.         $url = new Url();
  218.         $url->setUrl('test-galilea-website.plan-d.cloud/{localization}');
  219.         $url->setLanguage('de');
  220.         $url->setCountry('');
  221.         $url->setSegment('');
  222.         $url->setRedirect('');
  223.         $url->setMain(false);
  224.         $environment->addUrl($url);
  225.         // add environment url
  226.         $url = new Url();
  227.         $url->setUrl('test-galilea-website.plan-d.cloud/{localization}');
  228.         $url->setLanguage('en');
  229.         $url->setCountry('');
  230.         $url->setSegment('');
  231.         $url->setRedirect('');
  232.         $url->setMain(false);
  233.         $environment->addUrl($url);
  234.         $portal->addEnvironment($environment);
  235.         $portalRefs['galilea-website'] = $portal;
  236.         $webspace->addPortal($portal);
  237.         $webspaceRefs['galilea-website'] = $webspace;
  238.         // new webspace
  239.         $webspace = new Webspace();
  240.         $webspace->setKey('plan-d-berechtigungen');
  241.         $webspace->setName("plan-d.com");
  242.         // add localization to webspace
  243.         $localization0 = new Localization();
  244.         $localization0->setLanguage('en');
  245.         $localization0->setCountry('');
  246.         $localization0->setShadow('');
  247.         $localization0->setDefault(false);
  248.         $localization0->setXDefault('');
  249.         $localizationRefs['plan-d-berechtigungen_en'] = $localization0;
  250.         $webspace->addLocalization($localization0);
  251.         // add localization to webspace
  252.         $localization0 = new Localization();
  253.         $localization0->setLanguage('de');
  254.         $localization0->setCountry('');
  255.         $localization0->setShadow('');
  256.         $localization0->setDefault(true);
  257.         $localization0->setXDefault('');
  258.         $localizationRefs['plan-d-berechtigungen_de'] = $localization0;
  259.         $webspace->addLocalization($localization0);
  260.         // add theme
  261.         $webspace->addTemplate('search''search/search');
  262.         $webspace->addTemplate('error''error/error');
  263.         $webspace->addDefaultTemplate('page''default');
  264.         $webspace->addDefaultTemplate('home''homepage');
  265.         $webspace->addExcludedTemplate('galilea_default');
  266.         $webspace->addExcludedTemplate('galilea_homepage');
  267.         // add navigation
  268.         $navigation = new Navigation();
  269.         $navigation->addContext(new NavigationContext('main',     array(
  270.                         'title' =>     array(
  271.                         'en' => 'Main Navigation',
  272.                                 'de' => 'Hauptnavigation',
  273.                 )
  274. ,
  275.                 )
  276. ));
  277.         $navigation->addContext(new NavigationContext('footer_left',     array(
  278.                         'title' =>     array(
  279.                         'en' => 'Footernavigation Left',
  280.                                 'de' => 'Footernavigation Links',
  281.                 )
  282. ,
  283.                 )
  284. ));
  285.         $navigation->addContext(new NavigationContext('footer_middle',     array(
  286.                         'title' =>     array(
  287.                         'en' => 'Footernavigation Middle',
  288.                                 'de' => 'Footernavigation Mitte',
  289.                 )
  290. ,
  291.                 )
  292. ));
  293.         $navigation->addContext(new NavigationContext('footer_right',     array(
  294.                         'title' =>     array(
  295.                         'en' => 'Footernavigation Right',
  296.                                 'de' => 'Footernavigation Rechts',
  297.                 )
  298. ,
  299.                 )
  300. ));
  301.         $navigation->addContext(new NavigationContext('footer_bottom',     array(
  302.                         'title' =>     array(
  303.                         'en' => 'Footernavigation Bottom',
  304.                                 'de' => 'Footernavigation Boden',
  305.                 )
  306. ,
  307.                 )
  308. ));
  309.         $webspace->setNavigation($navigation);
  310.         $webspace->setResourceLocatorStrategy('tree_leaf_edit');
  311.         // new portal
  312.         $portal = new Portal();
  313.         $portal->setName('plan-d.com');
  314.         $portal->setKey('plan-d-berechtigungen');
  315.         $portal->setWebspace($webspace);
  316.         // add localization
  317.         $localization = new Localization();
  318.         $localization->setLanguage('en');
  319.         $localization->setCountry('');
  320.         $localization->setDefault('');
  321.         $localization->setXDefault('');
  322.         $portal->addLocalization($localization);
  323.         // add localization
  324.         $localization = new Localization();
  325.         $localization->setLanguage('de');
  326.         $localization->setCountry('');
  327.         $localization->setDefault('1');
  328.         $localization->setXDefault('');
  329.         $portal->addLocalization($localization);
  330.         // add environment
  331.         $environment = new Environment();
  332.         $environment->setType('prod');
  333.         // add environment url
  334.         $url = new Url();
  335.         $url->setUrl('{host}/{localization}');
  336.         $url->setLanguage('de');
  337.         $url->setCountry('');
  338.         $url->setSegment('');
  339.         $url->setRedirect('');
  340.         $url->setMain(true);
  341.         $environment->addUrl($url);
  342.         // add environment url
  343.         $url = new Url();
  344.         $url->setUrl('{host}/{localization}');
  345.         $url->setLanguage('en');
  346.         $url->setCountry('');
  347.         $url->setSegment('');
  348.         $url->setRedirect('');
  349.         $url->setMain(false);
  350.         $environment->addUrl($url);
  351.         $portal->addEnvironment($environment);
  352.         // add environment
  353.         $environment = new Environment();
  354.         $environment->setType('stage');
  355.         // add environment url
  356.         $url = new Url();
  357.         $url->setUrl('preprod-website.plan-d.cloud/{localization}');
  358.         $url->setLanguage('de');
  359.         $url->setCountry('');
  360.         $url->setSegment('');
  361.         $url->setRedirect('');
  362.         $url->setMain(true);
  363.         $environment->addUrl($url);
  364.         // add environment url
  365.         $url = new Url();
  366.         $url->setUrl('preprod-website.plan-d.cloud/{localization}');
  367.         $url->setLanguage('en');
  368.         $url->setCountry('');
  369.         $url->setSegment('');
  370.         $url->setRedirect('');
  371.         $url->setMain(false);
  372.         $environment->addUrl($url);
  373.         $portal->addEnvironment($environment);
  374.         // add environment
  375.         $environment = new Environment();
  376.         $environment->setType('test');
  377.         // add environment url
  378.         $url = new Url();
  379.         $url->setUrl('dmz-test-pdwebsite.plan-d.cloud/{localization}');
  380.         $url->setLanguage('de');
  381.         $url->setCountry('');
  382.         $url->setSegment('');
  383.         $url->setRedirect('');
  384.         $url->setMain(true);
  385.         $environment->addUrl($url);
  386.         // add environment url
  387.         $url = new Url();
  388.         $url->setUrl('dmz-test-pdwebsite.plan-d.cloud/{localization}');
  389.         $url->setLanguage('en');
  390.         $url->setCountry('');
  391.         $url->setSegment('');
  392.         $url->setRedirect('');
  393.         $url->setMain(false);
  394.         $environment->addUrl($url);
  395.         $portal->addEnvironment($environment);
  396.         // add environment
  397.         $environment = new Environment();
  398.         $environment->setType('dev');
  399.         // add environment url
  400.         $url = new Url();
  401.         $url->setUrl('pland_website.localhost/{localization}');
  402.         $url->setLanguage('de');
  403.         $url->setCountry('');
  404.         $url->setSegment('');
  405.         $url->setRedirect('');
  406.         $url->setMain(true);
  407.         $environment->addUrl($url);
  408.         // add environment url
  409.         $url = new Url();
  410.         $url->setUrl('pland_website.localhost/{localization}');
  411.         $url->setLanguage('en');
  412.         $url->setCountry('');
  413.         $url->setSegment('');
  414.         $url->setRedirect('');
  415.         $url->setMain(false);
  416.         $environment->addUrl($url);
  417.         // add environment url
  418.         $url = new Url();
  419.         $url->setUrl('dmz-test-pdwebsite.plan-d.cloud/{localization}');
  420.         $url->setLanguage('de');
  421.         $url->setCountry('');
  422.         $url->setSegment('');
  423.         $url->setRedirect('');
  424.         $url->setMain(false);
  425.         $environment->addUrl($url);
  426.         // add environment url
  427.         $url = new Url();
  428.         $url->setUrl('dmz-test-pdwebsite.plan-d.cloud/{localization}');
  429.         $url->setLanguage('en');
  430.         $url->setCountry('');
  431.         $url->setSegment('');
  432.         $url->setRedirect('');
  433.         $url->setMain(false);
  434.         $environment->addUrl($url);
  435.         $portal->addEnvironment($environment);
  436.         $portalRefs['plan-d-berechtigungen'] = $portal;
  437.         $webspace->addPortal($portal);
  438.         $webspaceRefs['plan-d-berechtigungen'] = $webspace;
  439.         $portalInformationRefs['prod']['www.galilea.ai/de'] = new PortalInformation(
  440.             1,
  441.             $webspaceRefs['galilea-website'],
  442.             $portalRefs['galilea-website'],
  443.             $localizationRefs['galilea-website_de'],
  444.             'www.galilea.ai/de',
  445.             null,
  446.             null,
  447.             true,
  448.             'www.galilea.ai/{localization}',
  449.             10
  450.         );
  451.         $portalInformationRefs['prod']['www.galilea.ai/en'] = new PortalInformation(
  452.             1,
  453.             $webspaceRefs['galilea-website'],
  454.             $portalRefs['galilea-website'],
  455.             $localizationRefs['galilea-website_en'],
  456.             'www.galilea.ai/en',
  457.             null,
  458.             null,
  459.             false,
  460.             'www.galilea.ai/{localization}',
  461.             10
  462.         );
  463.         $portalInformationRefs['prod']['www.galilea.ai'] = new PortalInformation(
  464.             2,
  465.             $webspaceRefs['galilea-website'],
  466.             $portalRefs['galilea-website'],
  467.             null,
  468.             'www.galilea.ai',
  469.             null,
  470.             'www.galilea.ai/{localization}',
  471.             false,
  472.             'www.galilea.ai/{localization}',
  473.             9
  474.         );
  475.         $portalInformationRefs['prod']['{host}/de'] = new PortalInformation(
  476.             1,
  477.             $webspaceRefs['plan-d-berechtigungen'],
  478.             $portalRefs['plan-d-berechtigungen'],
  479.             $localizationRefs['plan-d-berechtigungen_de'],
  480.             '{host}/de',
  481.             null,
  482.             null,
  483.             true,
  484.             '{host}/{localization}',
  485.             5
  486.         );
  487.         $portalInformationRefs['prod']['{host}/en'] = new PortalInformation(
  488.             1,
  489.             $webspaceRefs['plan-d-berechtigungen'],
  490.             $portalRefs['plan-d-berechtigungen'],
  491.             $localizationRefs['plan-d-berechtigungen_en'],
  492.             '{host}/en',
  493.             null,
  494.             null,
  495.             false,
  496.             '{host}/{localization}',
  497.             5
  498.         );
  499.         $portalInformationRefs['prod']['{host}'] = new PortalInformation(
  500.             2,
  501.             $webspaceRefs['plan-d-berechtigungen'],
  502.             $portalRefs['plan-d-berechtigungen'],
  503.             null,
  504.             '{host}',
  505.             null,
  506.             '{host}/{localization}',
  507.             false,
  508.             '{host}/{localization}',
  509.             4
  510.         );
  511.         $portalInformationRefs['stage']['preprod-galilea-website.plan-d.cloud/de'] = new PortalInformation(
  512.             1,
  513.             $webspaceRefs['galilea-website'],
  514.             $portalRefs['galilea-website'],
  515.             $localizationRefs['galilea-website_de'],
  516.             'preprod-galilea-website.plan-d.cloud/de',
  517.             null,
  518.             null,
  519.             true,
  520.             'preprod-galilea-website.plan-d.cloud/{localization}',
  521.             10
  522.         );
  523.         $portalInformationRefs['stage']['preprod-galilea-website.plan-d.cloud/en'] = new PortalInformation(
  524.             1,
  525.             $webspaceRefs['galilea-website'],
  526.             $portalRefs['galilea-website'],
  527.             $localizationRefs['galilea-website_en'],
  528.             'preprod-galilea-website.plan-d.cloud/en',
  529.             null,
  530.             null,
  531.             false,
  532.             'preprod-galilea-website.plan-d.cloud/{localization}',
  533.             10
  534.         );
  535.         $portalInformationRefs['stage']['preprod-galilea-website.plan-d.cloud'] = new PortalInformation(
  536.             2,
  537.             $webspaceRefs['galilea-website'],
  538.             $portalRefs['galilea-website'],
  539.             null,
  540.             'preprod-galilea-website.plan-d.cloud',
  541.             null,
  542.             'preprod-galilea-website.plan-d.cloud/{localization}',
  543.             false,
  544.             'preprod-galilea-website.plan-d.cloud/{localization}',
  545.             9
  546.         );
  547.         $portalInformationRefs['stage']['preprod-website.plan-d.cloud/de'] = new PortalInformation(
  548.             1,
  549.             $webspaceRefs['plan-d-berechtigungen'],
  550.             $portalRefs['plan-d-berechtigungen'],
  551.             $localizationRefs['plan-d-berechtigungen_de'],
  552.             'preprod-website.plan-d.cloud/de',
  553.             null,
  554.             null,
  555.             true,
  556.             'preprod-website.plan-d.cloud/{localization}',
  557.             10
  558.         );
  559.         $portalInformationRefs['stage']['preprod-website.plan-d.cloud/en'] = new PortalInformation(
  560.             1,
  561.             $webspaceRefs['plan-d-berechtigungen'],
  562.             $portalRefs['plan-d-berechtigungen'],
  563.             $localizationRefs['plan-d-berechtigungen_en'],
  564.             'preprod-website.plan-d.cloud/en',
  565.             null,
  566.             null,
  567.             false,
  568.             'preprod-website.plan-d.cloud/{localization}',
  569.             10
  570.         );
  571.         $portalInformationRefs['stage']['preprod-website.plan-d.cloud'] = new PortalInformation(
  572.             2,
  573.             $webspaceRefs['plan-d-berechtigungen'],
  574.             $portalRefs['plan-d-berechtigungen'],
  575.             null,
  576.             'preprod-website.plan-d.cloud',
  577.             null,
  578.             'preprod-website.plan-d.cloud/{localization}',
  579.             false,
  580.             'preprod-website.plan-d.cloud/{localization}',
  581.             9
  582.         );
  583.         $portalInformationRefs['test']['test-galilea-website.plan-d.cloud/de'] = new PortalInformation(
  584.             1,
  585.             $webspaceRefs['galilea-website'],
  586.             $portalRefs['galilea-website'],
  587.             $localizationRefs['galilea-website_de'],
  588.             'test-galilea-website.plan-d.cloud/de',
  589.             null,
  590.             null,
  591.             true,
  592.             'test-galilea-website.plan-d.cloud/{localization}',
  593.             10
  594.         );
  595.         $portalInformationRefs['test']['test-galilea-website.plan-d.cloud/en'] = new PortalInformation(
  596.             1,
  597.             $webspaceRefs['galilea-website'],
  598.             $portalRefs['galilea-website'],
  599.             $localizationRefs['galilea-website_en'],
  600.             'test-galilea-website.plan-d.cloud/en',
  601.             null,
  602.             null,
  603.             false,
  604.             'test-galilea-website.plan-d.cloud/{localization}',
  605.             10
  606.         );
  607.         $portalInformationRefs['test']['dmz-test-pdwebsite.plan-d.cloud/de'] = new PortalInformation(
  608.             1,
  609.             $webspaceRefs['plan-d-berechtigungen'],
  610.             $portalRefs['plan-d-berechtigungen'],
  611.             $localizationRefs['plan-d-berechtigungen_de'],
  612.             'dmz-test-pdwebsite.plan-d.cloud/de',
  613.             null,
  614.             null,
  615.             true,
  616.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  617.             10
  618.         );
  619.         $portalInformationRefs['test']['dmz-test-pdwebsite.plan-d.cloud/en'] = new PortalInformation(
  620.             1,
  621.             $webspaceRefs['plan-d-berechtigungen'],
  622.             $portalRefs['plan-d-berechtigungen'],
  623.             $localizationRefs['plan-d-berechtigungen_en'],
  624.             'dmz-test-pdwebsite.plan-d.cloud/en',
  625.             null,
  626.             null,
  627.             false,
  628.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  629.             10
  630.         );
  631.         $portalInformationRefs['test']['test-galilea-website.plan-d.cloud'] = new PortalInformation(
  632.             2,
  633.             $webspaceRefs['galilea-website'],
  634.             $portalRefs['galilea-website'],
  635.             null,
  636.             'test-galilea-website.plan-d.cloud',
  637.             null,
  638.             'test-galilea-website.plan-d.cloud/{localization}',
  639.             false,
  640.             'test-galilea-website.plan-d.cloud/{localization}',
  641.             9
  642.         );
  643.         $portalInformationRefs['test']['dmz-test-pdwebsite.plan-d.cloud'] = new PortalInformation(
  644.             2,
  645.             $webspaceRefs['plan-d-berechtigungen'],
  646.             $portalRefs['plan-d-berechtigungen'],
  647.             null,
  648.             'dmz-test-pdwebsite.plan-d.cloud',
  649.             null,
  650.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  651.             false,
  652.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  653.             9
  654.         );
  655.         $portalInformationRefs['dev']['test-galilea-website.plan-d.cloud/de'] = new PortalInformation(
  656.             1,
  657.             $webspaceRefs['galilea-website'],
  658.             $portalRefs['galilea-website'],
  659.             $localizationRefs['galilea-website_de'],
  660.             'test-galilea-website.plan-d.cloud/de',
  661.             null,
  662.             null,
  663.             false,
  664.             'test-galilea-website.plan-d.cloud/{localization}',
  665.             10
  666.         );
  667.         $portalInformationRefs['dev']['test-galilea-website.plan-d.cloud/en'] = new PortalInformation(
  668.             1,
  669.             $webspaceRefs['galilea-website'],
  670.             $portalRefs['galilea-website'],
  671.             $localizationRefs['galilea-website_en'],
  672.             'test-galilea-website.plan-d.cloud/en',
  673.             null,
  674.             null,
  675.             false,
  676.             'test-galilea-website.plan-d.cloud/{localization}',
  677.             10
  678.         );
  679.         $portalInformationRefs['dev']['dmz-test-pdwebsite.plan-d.cloud/de'] = new PortalInformation(
  680.             1,
  681.             $webspaceRefs['plan-d-berechtigungen'],
  682.             $portalRefs['plan-d-berechtigungen'],
  683.             $localizationRefs['plan-d-berechtigungen_de'],
  684.             'dmz-test-pdwebsite.plan-d.cloud/de',
  685.             null,
  686.             null,
  687.             false,
  688.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  689.             10
  690.         );
  691.         $portalInformationRefs['dev']['dmz-test-pdwebsite.plan-d.cloud/en'] = new PortalInformation(
  692.             1,
  693.             $webspaceRefs['plan-d-berechtigungen'],
  694.             $portalRefs['plan-d-berechtigungen'],
  695.             $localizationRefs['plan-d-berechtigungen_en'],
  696.             'dmz-test-pdwebsite.plan-d.cloud/en',
  697.             null,
  698.             null,
  699.             false,
  700.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  701.             10
  702.         );
  703.         $portalInformationRefs['dev']['test-galilea-website.plan-d.cloud'] = new PortalInformation(
  704.             2,
  705.             $webspaceRefs['galilea-website'],
  706.             $portalRefs['galilea-website'],
  707.             null,
  708.             'test-galilea-website.plan-d.cloud',
  709.             null,
  710.             'test-galilea-website.plan-d.cloud/{localization}',
  711.             false,
  712.             'test-galilea-website.plan-d.cloud/{localization}',
  713.             9
  714.         );
  715.         $portalInformationRefs['dev']['dmz-test-pdwebsite.plan-d.cloud'] = new PortalInformation(
  716.             2,
  717.             $webspaceRefs['plan-d-berechtigungen'],
  718.             $portalRefs['plan-d-berechtigungen'],
  719.             null,
  720.             'dmz-test-pdwebsite.plan-d.cloud',
  721.             null,
  722.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  723.             false,
  724.             'dmz-test-pdwebsite.plan-d.cloud/{localization}',
  725.             9
  726.         );
  727.         $portalInformationRefs['dev']['galilea_website.localhost/de'] = new PortalInformation(
  728.             1,
  729.             $webspaceRefs['galilea-website'],
  730.             $portalRefs['galilea-website'],
  731.             $localizationRefs['galilea-website_de'],
  732.             'galilea_website.localhost/de',
  733.             null,
  734.             null,
  735.             true,
  736.             'galilea_website.localhost/{localization}',
  737.             10
  738.         );
  739.         $portalInformationRefs['dev']['galilea_website.localhost/en'] = new PortalInformation(
  740.             1,
  741.             $webspaceRefs['galilea-website'],
  742.             $portalRefs['galilea-website'],
  743.             $localizationRefs['galilea-website_en'],
  744.             'galilea_website.localhost/en',
  745.             null,
  746.             null,
  747.             false,
  748.             'galilea_website.localhost/{localization}',
  749.             10
  750.         );
  751.         $portalInformationRefs['dev']['pland_website.localhost/de'] = new PortalInformation(
  752.             1,
  753.             $webspaceRefs['plan-d-berechtigungen'],
  754.             $portalRefs['plan-d-berechtigungen'],
  755.             $localizationRefs['plan-d-berechtigungen_de'],
  756.             'pland_website.localhost/de',
  757.             null,
  758.             null,
  759.             true,
  760.             'pland_website.localhost/{localization}',
  761.             10
  762.         );
  763.         $portalInformationRefs['dev']['pland_website.localhost/en'] = new PortalInformation(
  764.             1,
  765.             $webspaceRefs['plan-d-berechtigungen'],
  766.             $portalRefs['plan-d-berechtigungen'],
  767.             $localizationRefs['plan-d-berechtigungen_en'],
  768.             'pland_website.localhost/en',
  769.             null,
  770.             null,
  771.             false,
  772.             'pland_website.localhost/{localization}',
  773.             10
  774.         );
  775.         $portalInformationRefs['dev']['galilea_website.localhost'] = new PortalInformation(
  776.             2,
  777.             $webspaceRefs['galilea-website'],
  778.             $portalRefs['galilea-website'],
  779.             null,
  780.             'galilea_website.localhost',
  781.             null,
  782.             'galilea_website.localhost/{localization}',
  783.             false,
  784.             'galilea_website.localhost/{localization}',
  785.             9
  786.         );
  787.         $portalInformationRefs['dev']['pland_website.localhost'] = new PortalInformation(
  788.             2,
  789.             $webspaceRefs['plan-d-berechtigungen'],
  790.             $portalRefs['plan-d-berechtigungen'],
  791.             null,
  792.             'pland_website.localhost',
  793.             null,
  794.             'pland_website.localhost/{localization}',
  795.             false,
  796.             'pland_website.localhost/{localization}',
  797.             9
  798.         );
  799.         $this->setWebspaces($webspaceRefs);
  800.         $this->setPortals($portalRefs);
  801.         $this->setPortalInformations($portalInformationRefs);
  802.     }
  803. }