- Introduced new backend site management features including the ability to accept, unaccept, save, edit, and display topics and collective topics. - Added new views for editing and listing collective topics and topics. - Implemented necessary backend logic in the `BackendSites` and `factory\BackendSites` classes to handle CRUD operations for topics and collective topics. - Updated the layout to include links for accessing the new backend features based on user permissions.
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?
|
|
global $db;
|
|
ob_start();
|
|
?>
|
|
<?= \Html::input( [
|
|
'label' => 'Strona',
|
|
'name' => 'strona',
|
|
'id' => 'strona',
|
|
'value' => $this -> collective_topic['strona'],
|
|
'inline' => true
|
|
] );?>
|
|
<?= \Html::input( [
|
|
'label' => 'Kategoria',
|
|
'name' => 'kategoria',
|
|
'id' => 'kategoria',
|
|
'value' => $this -> collective_topic['kategoria'],
|
|
'inline' => true
|
|
] );?>
|
|
<?= \Html::input( [
|
|
'label' => 'Kategoria ID',
|
|
'name' => 'kategoria_id',
|
|
'id' => 'kategoria_id',
|
|
'value' => $this -> collective_topic['kategoria_id'],
|
|
'inline' => true
|
|
] );?>
|
|
<?= \Html::input( [
|
|
'label' => 'Temat',
|
|
'name' => 'temat_ogolny',
|
|
'id' => 'temat_ogolny',
|
|
'value' => $this -> collective_topic['temat_ogolny'],
|
|
'inline' => true
|
|
] );?>
|
|
<?= \Html::input( [
|
|
'label' => 'Data przetworzenia',
|
|
'name' => 'data_przetworzenia',
|
|
'id' => 'data_przetworzenia',
|
|
'value' => $this -> collective_topic['data_przetworzenia'],
|
|
'inline' => true
|
|
] );?>
|
|
<?= \Html::input_switch( [
|
|
'label' => 'Przetworzony',
|
|
'name' => 'przetworzony',
|
|
'id' => 'przetworzony',
|
|
'checked' => $this -> collective_topic['przetworzony'] == 1 ? true : false,
|
|
'inline' => true
|
|
] );?>
|
|
<?
|
|
$out = ob_get_clean();
|
|
|
|
$grid = new \gridEdit;
|
|
$grid -> id = 'client-edit';
|
|
$grid -> gdb_opt = $gdb;
|
|
$grid -> include_plugins = true;
|
|
$grid -> title = 'Edycja <strong>tematu zbiorowego</strong>';
|
|
$grid -> fields = [
|
|
[
|
|
'db' => 'id',
|
|
'type' => 'hidden',
|
|
'value' => $this -> collective_topic['id']
|
|
]
|
|
];
|
|
$grid -> external_code = $out;
|
|
$grid -> actions = [
|
|
'save' => [ 'url' => '/backend_sites/collective_topic_save/', 'back_url' => '/backend_sites/collective_topics/' ],
|
|
'cancel' => [ 'url' => '/backend_sites/collective_topics/' ]
|
|
];
|
|
$grid -> persist_edit = true;
|
|
$grid -> id_param = 'id';
|
|
echo $grid -> draw();
|
|
?>
|