Skip to content

Commit ae9c03a

Browse files
committedJun 17, 2023
Generate frontend application
1 parent b392a55 commit ae9c03a

14 files changed

+188
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
/cache/
22
/lib/vendor/
33
/log/
4+
/web/sf/

‎apps/frontend/config/app.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/11-App
3+
4+
# default values
5+
#all:

‎apps/frontend/config/cache.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/09-Cache
3+
4+
default:
5+
enabled: false
6+
with_layout: false
7+
lifetime: 86400

‎apps/frontend/config/factories.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/05-Factories
3+
4+
prod:
5+
logger:
6+
class: sfNoLogger
7+
param:
8+
level: err
9+
loggers: ~
10+
11+
test:
12+
storage:
13+
class: sfSessionTestStorage
14+
param:
15+
session_path: %SF_TEST_CACHE_DIR%/sessions
16+
17+
response:
18+
class: sfWebResponse
19+
param:
20+
send_http_headers: false
21+
22+
mailer:
23+
param:
24+
delivery_strategy: none
25+
26+
dev:
27+
mailer:
28+
param:
29+
delivery_strategy: none
30+
31+
all:
32+
routing:
33+
class: sfPatternRouting
34+
param:
35+
generate_shortest_url: true
36+
extra_parameters_as_query_string: true
37+
38+
view_cache_manager:
39+
class: sfViewCacheManager
40+
param:
41+
cache_key_use_vary_headers: true
42+
cache_key_use_host_name: true

‎apps/frontend/config/filters.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/12-Filters
3+
4+
rendering: ~
5+
security: ~
6+
7+
# insert your own filters here
8+
9+
cache: ~
10+
execution: ~
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?php
2+
3+
class frontendConfiguration extends sfApplicationConfiguration
4+
{
5+
public function configure()
6+
{
7+
}
8+
}

‎apps/frontend/config/routing.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/10-Routing
3+
4+
# default rules
5+
homepage:
6+
url: /
7+
param: { module: default, action: index }
8+
9+
# generic rules
10+
# please, remove them by adding more specific rules
11+
default_index:
12+
url: /:module
13+
param: { action: index }
14+
15+
default:
16+
url: /:module/:action/*

‎apps/frontend/config/security.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/08-Security
3+
4+
default:
5+
is_secure: false

‎apps/frontend/config/settings.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/04-Settings
3+
4+
prod:
5+
.settings:
6+
no_script_name: true
7+
logging_enabled: false
8+
9+
dev:
10+
.settings:
11+
error_reporting: <?php echo (E_ALL | E_STRICT)."\n" ?>
12+
web_debug: true
13+
cache: false
14+
no_script_name: false
15+
etag: false
16+
17+
test:
18+
.settings:
19+
error_reporting: <?php echo ((E_ALL | E_STRICT) ^ E_NOTICE)."\n" ?>
20+
cache: false
21+
web_debug: false
22+
no_script_name: false
23+
etag: false
24+
25+
all:
26+
.settings:
27+
# Form security secret (CSRF protection)
28+
csrf_secret: 13854b9302dccf1421c5904fbec5a997733922a2
29+
30+
# Output escaping settings
31+
escaping_strategy: true
32+
escaping_method: ESC_SPECIALCHARS
33+
34+
# Enable the database manager
35+
use_database: true

‎apps/frontend/config/view.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# You can find more information about this file on the symfony website:
2+
# http://www.symfony-project.org/reference/1_4/en/13-View
3+
4+
default:
5+
http_metas:
6+
content-type: text/html
7+
8+
metas:
9+
#title: symfony project
10+
#description: symfony project
11+
#keywords: symfony, project
12+
#language: en
13+
#robots: index, follow
14+
15+
stylesheets: [main.css]
16+
17+
javascripts: []
18+
19+
has_layout: true
20+
layout: layout

‎apps/frontend/lib/myUser.class.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
class myUser extends sfBasicSecurityUser
4+
{
5+
}

‎apps/frontend/templates/layout.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3+
<head>
4+
<?php include_http_metas() ?>
5+
<?php include_metas() ?>
6+
<?php include_title() ?>
7+
<link rel="shortcut icon" href="/favicon.ico" />
8+
<?php include_stylesheets() ?>
9+
<?php include_javascripts() ?>
10+
</head>
11+
<body>
12+
<?php echo $sf_content ?>
13+
</body>
14+
</html>

‎web/frontend_dev.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
// this check prevents access to debug front controllers that are deployed by accident to production servers.
4+
// feel free to remove this, extend it or make something more sophisticated.
5+
if (!preg_match('/^192\.168\.\d{1,3}\.\d{1,3}$/', @$_SERVER['REMOTE_ADDR']))
6+
{
7+
die('You are not allowed to access this file. Check '.basename(__FILE__).' for more information.');
8+
}
9+
10+
require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php');
11+
12+
$configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'dev', true);
13+
sfContext::createInstance($configuration)->dispatch();

‎web/index.php

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
4+
require_once(dirname(__FILE__).'/../config/ProjectConfiguration.class.php');
5+
6+
$configuration = ProjectConfiguration::getApplicationConfiguration('frontend', 'prod', false);
7+
sfContext::createInstance($configuration)->dispatch();

0 commit comments

Comments
 (0)
Please sign in to comment.