FIle - /trunk/views/php/admin/settings/users_profile_fields_manage.php
/trunk/views/php/admin/settings/users_profile_fields_manage.php
|
|
432 bytes
|
|
January 20, 2025 at 08:22
|
|
<?php
declare(strict_types = 1);
namespace Views\admin\settings;
use Apex\Svc\{View, App};
use App\Users\Models\ProfileField;
/**
* Render the template.
*/
class users_profile_fields_manage
{
/**
* Render
*/
public function render(View $view, App $app):void
{
// Get record id
$record_id = $app->get('profile_field_id');
$view->assign('profile_field_id', $record_id);
}
}