FoxSecrets Active member May 10, 2024 #1 Help me to find the delete action of custom fields, I can't find it. url: admin.php?custom-user-fields/ I found the url custom-user-fields/<field_id>/delete and class points to XF:UserField However when I check XF UserField controller, I can't find delete action. Where is it?
Help me to find the delete action of custom fields, I can't find it. url: admin.php?custom-user-fields/ I found the url custom-user-fields/<field_id>/delete and class points to XF:UserField However when I check XF UserField controller, I can't find delete action. Where is it?
Jeremy P XenForo developer Staff member May 11, 2024 #2 PHP: <?php namespace XF\Admin\Controller; class UserField extends AbstractField { // ... } \XF\Admin\Controller\AbstractField::actionDelete
PHP: <?php namespace XF\Admin\Controller; class UserField extends AbstractField { // ... } \XF\Admin\Controller\AbstractField::actionDelete
FoxSecrets Active member May 11, 2024 #3 Jeremy P said: \XF\Admin\Controller\AbstractField::actionDelete Click to expand... Ow I forgot that extension :| , many thanks @Jeremy P
Jeremy P said: \XF\Admin\Controller\AbstractField::actionDelete Click to expand... Ow I forgot that extension :| , many thanks @Jeremy P