2020-10-02 14:34:23 +02:00
|
|
|
#== Home ========================================================================================================
|
|
|
|
app_home:
|
|
|
|
path: /
|
|
|
|
defaults: { _controller: App\Controller\HomeController:home }
|
|
|
|
|
|
|
|
app_admin:
|
|
|
|
path: /admin/home
|
|
|
|
defaults: { _controller: App\Controller\HomeController:admin }
|
|
|
|
|
|
|
|
app_ckeditor_upload:
|
|
|
|
path: /user/activity/upload
|
|
|
|
defaults: { _controller: App\Controller\HomeController:upload }
|
|
|
|
|
|
|
|
#== Security ====================================================================================================
|
|
|
|
app_login:
|
|
|
|
path: /login
|
|
|
|
defaults: { _controller: App\Controller\SecurityController:login }
|
|
|
|
|
|
|
|
app_logout:
|
|
|
|
path: /logout
|
|
|
|
defaults: { _controller: App\Controller\SecurityController:logout }
|
|
|
|
|
|
|
|
app_logincas:
|
|
|
|
path: /logincas
|
|
|
|
defaults: { _controller: App\Controller\SecurityController:login }
|
|
|
|
|
|
|
|
app_logoutcas:
|
|
|
|
path: /logoutcas
|
|
|
|
defaults: { _controller: App\Controller\SecurityController:logout }
|
|
|
|
|
2020-11-13 17:53:22 +01:00
|
|
|
#== Config ========================================================================================================
|
|
|
|
app_config:
|
|
|
|
path: /admin/config
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:list }
|
|
|
|
|
|
|
|
app_config_render:
|
|
|
|
path: /admin/config/render/{category}
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:listrender }
|
|
|
|
|
|
|
|
app_config_submit:
|
|
|
|
path: /admin/config/submit
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:submit }
|
|
|
|
|
|
|
|
app_config_update:
|
|
|
|
path: /admin/config/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:update }
|
|
|
|
|
|
|
|
app_config_delete:
|
|
|
|
path: /admin/config/delete/{id}
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:delete }
|
|
|
|
|
|
|
|
app_config_logo:
|
|
|
|
path: /admin/config/logo
|
|
|
|
defaults: { _controller: App\Controller\ConfigController:logo }
|
|
|
|
|
2020-10-23 15:22:28 +02:00
|
|
|
#== Sonde ================================================================================================================
|
|
|
|
app_sonde:
|
|
|
|
path: /sonde
|
|
|
|
defaults: { _controller: App\Controller\SondeController:sonde }
|
|
|
|
|
2020-10-02 14:34:23 +02:00
|
|
|
#== Crop =========================================================================================================
|
|
|
|
app_crop01:
|
2020-11-13 17:53:22 +01:00
|
|
|
path: /user/crop01/{type}/{reportinput}
|
2020-10-02 14:34:23 +02:00
|
|
|
defaults: { _controller: App\Controller\CropController:crop01 }
|
|
|
|
|
|
|
|
app_crop02:
|
2020-11-13 17:53:22 +01:00
|
|
|
path: /user/crop02/{type}/{reportinput}
|
2020-10-02 14:34:23 +02:00
|
|
|
defaults: { _controller: App\Controller\CropController:crop02 }
|
|
|
|
|
|
|
|
oneup_uploader:
|
|
|
|
resource: .
|
|
|
|
type: uploader
|
|
|
|
|
|
|
|
#== Cron ========================================================================================================
|
|
|
|
app_cron:
|
|
|
|
path: /admin/cron
|
|
|
|
defaults: { _controller: App\Controller\CronController:list }
|
|
|
|
|
|
|
|
app_cron_ajax_list:
|
|
|
|
path: /admin/cron/ajax/list
|
|
|
|
defaults: { _controller: App\Controller\CronController:ajaxlist }
|
|
|
|
|
|
|
|
app_cron_update:
|
|
|
|
path: /admin/cron/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\CronController:update }
|
|
|
|
|
|
|
|
app_cron_exec:
|
|
|
|
path: /admin/cron/exec/{id}
|
|
|
|
defaults: { _controller: App\Controller\CronController:exec }
|
|
|
|
|
|
|
|
app_cron_log:
|
|
|
|
path: /admin/cron/log
|
|
|
|
defaults: { _controller: App\Controller\CronController:log }
|
|
|
|
|
|
|
|
app_cron_getlog:
|
|
|
|
path: /admin/cron/getlog/{id}
|
|
|
|
defaults: { _controller: App\Controller\CronController:getlog }
|
|
|
|
|
|
|
|
#== User ========================================================================================================
|
|
|
|
app_user:
|
|
|
|
path: /admin/user
|
|
|
|
defaults: { _controller: App\Controller\UserController:list }
|
|
|
|
|
2020-11-13 17:53:22 +01:00
|
|
|
app_user_submit:
|
|
|
|
path: /admin/user/submit
|
|
|
|
defaults: { _controller: App\Controller\UserController:submit }
|
|
|
|
|
2020-10-02 14:34:23 +02:00
|
|
|
app_user_update:
|
|
|
|
path: /admin/user/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\UserController:update }
|
|
|
|
|
2020-11-13 17:53:22 +01:00
|
|
|
app_user_delete:
|
|
|
|
path: /admin/user/delete/{id}
|
|
|
|
defaults: { _controller: App\Controller\UserController:delete }
|
|
|
|
|
2020-10-02 14:34:23 +02:00
|
|
|
app_user_select:
|
|
|
|
path: /user/user/select
|
|
|
|
defaults: { _controller: App\Controller\UserController:select }
|
|
|
|
|
2020-11-13 17:53:22 +01:00
|
|
|
app_user_info:
|
|
|
|
path: /user/info
|
|
|
|
defaults: { _controller: App\Controller\UserController:info }
|
|
|
|
|
2020-10-02 14:34:23 +02:00
|
|
|
app_user_profil:
|
|
|
|
path: /user/profil
|
|
|
|
defaults: { _controller: App\Controller\UserController:profil }
|
|
|
|
|
|
|
|
#== Group ========================================================================================================
|
|
|
|
app_group:
|
|
|
|
path: /admin/group
|
|
|
|
defaults: { _controller: App\Controller\GroupController:list }
|
|
|
|
|
|
|
|
app_group_submit:
|
|
|
|
path: /admin/group/submit
|
|
|
|
defaults: { _controller: App\Controller\GroupController:submit }
|
|
|
|
|
|
|
|
app_group_update:
|
|
|
|
path: /admin/group/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\GroupController:update }
|
|
|
|
|
|
|
|
app_group_delete:
|
|
|
|
path: /admin/group/delete/{id}
|
|
|
|
defaults: { _controller: App\Controller\GroupController:delete }
|
|
|
|
|
|
|
|
app_group_select:
|
|
|
|
path: /user/group/select
|
|
|
|
defaults: { _controller: App\Controller\GroupController:select }
|
|
|
|
|
|
|
|
#== Activity ========================================================================================================
|
|
|
|
app_activity:
|
|
|
|
path: /user/activity
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:list }
|
|
|
|
|
|
|
|
app_activity_submit:
|
|
|
|
path: /master/activity/submit
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:submit }
|
|
|
|
|
|
|
|
app_activity_update:
|
|
|
|
path: /master/activity/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:update }
|
|
|
|
|
|
|
|
app_activity_delete:
|
|
|
|
path: /master/activity/delete/{id}
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:delete }
|
|
|
|
|
|
|
|
app_activity_archive:
|
|
|
|
path: /master/activity/archive/{id}
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:archive }
|
|
|
|
|
|
|
|
app_activity_activeactivity:
|
|
|
|
path: /user/activity/activeactivity
|
|
|
|
defaults: { _controller: App\Controller\ActivityController:activeactivity }
|
|
|
|
|
|
|
|
#== Answer ========================================================================================================
|
|
|
|
app_answer_update:
|
|
|
|
path: /user/answer/update/{id}
|
|
|
|
defaults: { _controller: App\Controller\AnswerController:update }
|
|
|
|
|
|
|
|
app_answer_view:
|
|
|
|
path: /master/answer/view/{id}
|
|
|
|
defaults: { _controller: App\Controller\AnswerController:view }
|
|
|
|
|
|
|
|
app_answer_select:
|
|
|
|
path: /master/answer/select
|
|
|
|
defaults: { _controller: App\Controller\AnswerController:select }
|
|
|
|
|
|
|
|
#== Document ========================================================================================================
|
|
|
|
app_document_upload:
|
|
|
|
path: /user/document/{entity}/{id}/upload
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:upload }
|
|
|
|
|
|
|
|
app_document_record:
|
|
|
|
path: /user/document/{entity}/{id}/record
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:record }
|
|
|
|
|
|
|
|
app_document_recordupload:
|
|
|
|
path: /user/document/{entity}/{id}/recordupload
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:recordupload }
|
|
|
|
|
|
|
|
app_document_listmaster:
|
|
|
|
path: /user/document/{entity}/{id}/listmaster
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:list, master: true }
|
|
|
|
|
|
|
|
app_document_listuser:
|
|
|
|
path: /user/document/{entity}/{id}/listuser
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:list, master: false }
|
|
|
|
|
|
|
|
app_document_view:
|
|
|
|
path: /user/document/{entity}/{id}/view
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:view }
|
|
|
|
|
|
|
|
app_document_show:
|
|
|
|
path: /user/document/{entity}/{id}/show
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:show }
|
|
|
|
|
|
|
|
app_document_update:
|
|
|
|
path: /user/document/{entity}/{id}/update
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:update }
|
|
|
|
|
|
|
|
app_document_delete:
|
|
|
|
path: /user/document/{entity}/{id}/delete
|
|
|
|
defaults: { _controller: App\Controller\DocumentController:delete }
|
|
|
|
|
|
|
|
#== Message ========================================================================================================
|
|
|
|
app_message_unread:
|
|
|
|
path: /user/message/unread
|
|
|
|
defaults: { _controller: App\Controller\MessageController:unread }
|
|
|
|
|
|
|
|
app_message:
|
|
|
|
path: /user/message/{id}
|
|
|
|
defaults: { _controller: App\Controller\MessageController:message }
|
|
|
|
|
|
|
|
app_message_load:
|
|
|
|
path: /user/message/{id}/load
|
|
|
|
defaults: { _controller: App\Controller\MessageController:load }
|
|
|
|
|
|
|
|
app_message_delete:
|
|
|
|
path: /user/message/{id}/delete
|
|
|
|
defaults: { _controller: App\Controller\MessageController:delete }
|
|
|
|
|
|
|
|
app_message_submit:
|
|
|
|
path: /user/message/{id}/submit
|
|
|
|
defaults: { _controller: App\Controller\MessageController:submit }
|
|
|
|
|
|
|
|
app_message_group:
|
|
|
|
path: /master/message/{id}/group
|
|
|
|
defaults: { _controller: App\Controller\MessageController:messagegroup }
|