Add initial files and database migration for ticket pricing system
- Created new directories and index files for controls, factory, and views. - Added .htaccess files for URL rewriting in layout and images directories. - Included a logo image in the layout/images directory. - Implemented load_prices.php to load ticket prices from the database into settings. - Developed admin panel settings page for enabling ticket sales. - Created tickets management page in the admin panel to display and edit ticket prices. - Added upgrade.php for database migrations, including creating the ticket_prices table and adding weekend price column.
This commit is contained in:
BIN
layout/.DS_Store
vendored
Normal file
BIN
layout/.DS_Store
vendored
Normal file
Binary file not shown.
9
layout/.htaccess
Normal file
9
layout/.htaccess
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
RewriteRule ^index\.php$ - [L]
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule . /index.php [L]
|
||||
</IfModule>
|
||||
9
layout/images/.htaccess
Normal file
9
layout/images/.htaccess
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
RewriteRule ^index\.php$ - [L]
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule . /index.php [L]
|
||||
</IfModule>
|
||||
BIN
layout/images/logo copy.png
Normal file
BIN
layout/images/logo copy.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.2 KiB |
9
layout/style-css/.htaccess
Normal file
9
layout/style-css/.htaccess
Normal file
@@ -0,0 +1,9 @@
|
||||
|
||||
<IfModule mod_rewrite.c>
|
||||
RewriteEngine On
|
||||
RewriteBase /
|
||||
RewriteRule ^index\.php$ - [L]
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule . /index.php [L]
|
||||
</IfModule>
|
||||
0
layout/style-css/countdown/index.php
Normal file
0
layout/style-css/countdown/index.php
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
0
layout/style-scss/index.php
Normal file
0
layout/style-scss/index.php
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user