initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:57:21 -06:00
commit fd8ad64063
22097 changed files with 1960930 additions and 0 deletions

View File

@@ -0,0 +1,221 @@
<?php
// auto-generated by sfRoutingConfigHandler
// date: 2010/08/08 21:36:36
$routes = sfRouting::getInstance();
$routes->setRoutes(
array (
'whoarewe_action' =>
array (
0 => '/:sf_culture/whoarewe/:action',
1 => '#^(?:\\/((?:en|de)))?/whoarewe(?:\\/((?:index)))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'action',
),
3 =>
array (
'sf_culture' => 1,
'action' => 1,
),
4 =>
array (
'module' => 'whoarewe',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
'action' => '(?:index)',
),
6 => '',
),
'whoarewe_employee' =>
array (
0 => '/:sf_culture/whoarewe/:employeeNameSlug',
1 => '#^(?:\\/((?:en|de)))?/whoarewe(?:\\/([^\\/]+))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'employeeNameSlug',
),
3 =>
array (
'sf_culture' => 1,
'employeeNameSlug' => 1,
),
4 =>
array (
'module' => 'whoarewe',
'action' => 'employee',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
),
6 => '',
),
'course_action' =>
array (
0 => '/:sf_culture/courses/:action',
1 => '#^(?:\\/((?:en|de)))?/courses(?:\\/((?:prices|list|publiccourses|schedule|index)))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'action',
),
3 =>
array (
'sf_culture' => 1,
'action' => 1,
),
4 =>
array (
'module' => 'courses',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
'action' => '(?:prices|list|publiccourses|schedule|index)',
),
6 => '',
),
'course' =>
array (
0 => '/:sf_culture/courses/:courseNameSlug',
1 => '#^(?:\\/((?:en|de)))?/courses(?:\\/([^\\/]+))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'courseNameSlug',
),
3 =>
array (
'sf_culture' => 1,
'courseNameSlug' => 1,
),
4 =>
array (
'module' => 'courses',
'action' => 'course',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
),
6 => '',
),
'homepage_no_culture' =>
array (
0 => '/',
1 => '/^[\\/]*$/',
2 =>
array (
),
3 =>
array (
),
4 =>
array (
'module' => 'default',
'action' => 'index',
),
5 =>
array (
),
6 => '',
),
'homepage' =>
array (
0 => '/:sf_culture',
1 => '#^(?:\\/((?:en|de)))?$#',
2 =>
array (
0 => 'sf_culture',
),
3 =>
array (
'sf_culture' => 1,
),
4 =>
array (
'module' => 'default',
'action' => 'index',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
),
6 => '',
),
'default_symfony' =>
array (
0 => '/symfony/:action/*',
1 => '#^/symfony(?:\\/([^\\/]+))?(?:\\/(.*))?$#',
2 =>
array (
0 => 'action',
),
3 =>
array (
'action' => 1,
),
4 =>
array (
'module' => 'default',
),
5 =>
array (
),
6 => '',
),
'default_index' =>
array (
0 => '/:sf_culture/:module',
1 => '#^(?:\\/((?:en|de)))?(?:\\/([^\\/]+))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'module',
),
3 =>
array (
'sf_culture' => 1,
'module' => 1,
),
4 =>
array (
'action' => 'index',
),
5 =>
array (
'sf_culture' => '(?:en|de)',
),
6 => '',
),
'default' =>
array (
0 => '/:sf_culture/:module/:action/*',
1 => '#^(?:\\/((?:en|de)))?(?:\\/([^\\/]+))?(?:\\/([^\\/]+))?(?:\\/(.*))?$#',
2 =>
array (
0 => 'sf_culture',
1 => 'module',
2 => 'action',
),
3 =>
array (
'sf_culture' => 1,
'module' => 1,
'action' => 1,
),
4 =>
array (
),
5 =>
array (
'sf_culture' => '(?:en|de)',
),
6 => '',
),
)
);