XF 2.2 Help me to find a delete action

FoxSecrets

Active member
Help me to find the delete action of custom fields, I can't find it.

url: admin.php?custom-user-fields/

1715366252533.webp
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?
 
PHP:
<?php

namespace XF\Admin\Controller;

class UserField extends AbstractField
{
    // ...
}

\XF\Admin\Controller\AbstractField::actionDelete
 
Top Bottom