17 require_once SQ_CORE_PACKAGE_PATH.
'/users/backend_user/backend_user_edit_fns.inc';
42 $this->static_screens = Array(
45 'force_unlock' => TRUE,
46 'lock_type' =>
'none',
48 'dependants' => Array(
49 'name' =>
'Dependants',
50 'force_unlock' => TRUE,
51 'lock_type' =>
'none',
70 $ipb_bridge =& $GLOBALS[
'SQ_SYSTEM']->am->getAsset($asset->_ipbid);
71 $ipb =& $ipb_bridge->getIpbConn();
72 $custom_fields = $ipb->getCustomFields();
73 $user_custom_data = $ipb->getMemberCustomFieldData($asset->id);
75 if (empty($custom_fields)) {
76 echo translate(
'no_custom_field').
'<br />';
78 foreach ($custom_fields as $field) {
79 $o->openField($field[
'pf_title']);
80 if (empty($user_custom_data[0][
'field_'.$field[
'pf_id']])) {
81 echo translate(
'none');
83 echo $user_custom_data[0][
'field_'.$field[
'pf_id']];