Files
web-site/Settings1/Projects.php
T
2026-07-02 08:16:19 +03:00

54 lines
1.6 KiB
PHP

<?php return
[
/*
|--------------------------------------------------------------------------
| Directory
|--------------------------------------------------------------------------
|
| Contains settings related to the Projects/ directory.
|
| default: The default boot directory. If the same name directory as the
| host name exists, the default boot directory is that directory.
|
| others : It is specified which domain will run which project directory.
| The project directory can be given a alias.
|
| Example: ['admin' => 'Backend', 'cast.site.com' => 'Cast']
|
*/
'directory' =>
[
'default' => ZN\Base::project('Frontend'),
'others' =>
[
'panel.pisilinux.org' => 'Panel',
'panel.pisilinux.og' => 'Panel',
'members.pisilinux.og' => 'Members',
'forum1.pisilinux.og' => 'Forum1',
'backend.pisilinux.og' => 'Backend',
]
],
/*
|--------------------------------------------------------------------------
| Containers
|--------------------------------------------------------------------------
|
| Projects contain settings on each other's scope.
| That is, it is possible to use common files for the projects mentioned.
| Every directory except Controller and View directories can be used as a
| common directory.
|
| Example: child => parent
*/
'containers' =>
[
'Panel' => 'Frontend',
'Members' => 'Frontend',
'Forum1' => 'Frontend',
'Backend' => 'Frontend',
]
];