forked from Public/pics
EditTag: hide option for assigning parent
This commit is contained in:
parent
4d47696dcd
commit
4033a8813c
@ -65,10 +65,6 @@ class EditTag extends HTMLController
|
|||||||
'request_url' => BASEURL . '/edittag/?' . ($id_tag ? 'id=' . $id_tag : 'add'),
|
'request_url' => BASEURL . '/edittag/?' . ($id_tag ? 'id=' . $id_tag : 'add'),
|
||||||
'content_below' => $after_form,
|
'content_below' => $after_form,
|
||||||
'fields' => [
|
'fields' => [
|
||||||
'id_parent' => [
|
|
||||||
'type' => 'numeric',
|
|
||||||
'label' => 'Parent tag ID',
|
|
||||||
],
|
|
||||||
'id_asset_thumb' => [
|
'id_asset_thumb' => [
|
||||||
'type' => 'numeric',
|
'type' => 'numeric',
|
||||||
'label' => 'Thumbnail asset ID',
|
'label' => 'Thumbnail asset ID',
|
||||||
@ -118,6 +114,7 @@ class EditTag extends HTMLController
|
|||||||
return $formview->adopt(new Alert('Some data missing', 'Please fill out the following fields: ' . implode(', ', $form->getMissing()), 'danger'));
|
return $formview->adopt(new Alert('Some data missing', 'Please fill out the following fields: ' . implode(', ', $form->getMissing()), 'danger'));
|
||||||
|
|
||||||
$data = $form->getData();
|
$data = $form->getData();
|
||||||
|
$data['id_parent'] = 0;
|
||||||
|
|
||||||
// Quick stripping.
|
// Quick stripping.
|
||||||
$data['slug'] = strtr($data['slug'], [' ' => '-', '--' => '-', '&' => 'and', '=>' => '', "'" => "", ":"=> "", '/' => '-', '\\' => '-']);
|
$data['slug'] = strtr($data['slug'], [' ' => '-', '--' => '-', '&' => 'and', '=>' => '', "'" => "", ":"=> "", '/' => '-', '\\' => '-']);
|
||||||
|
Loading…
Reference in New Issue
Block a user