Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1172735
user_profile_eh.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Sep 29, 11:19 PM
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Oct 1, 11:19 PM (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
760039
Attached To
rINP In-Portal
user_profile_eh.php
View Options
<?php
/**
* @version $Id: user_profile_eh.php 16692 2021-08-31 09:24:09Z alex $
* @package In-Portal
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license GNU/GPL
* In-Portal is Open Source software.
* This means that this software may have been modified pursuant
* the GNU General Public License, and as distributed it includes
* or is derivative of works licensed under the GNU General Public License
* or other free or open source software licenses.
* See http://www.in-portal.org/license for copyright notices and details.
*/
defined
(
'FULL_PATH'
)
or
die
(
'restricted access!'
);
class
UserProfileEventHandler
extends
kDBEventHandler
{
/**
* Allows to override standard permission mapping
*
* @return void
* @access protected
* @see kEventHandler::$permMapping
*/
protected
function
mapPermissions
()
{
parent
::
mapPermissions
();
$permissions
=
Array
(
'OnItemBuild'
=>
Array
(
'subitem'
=>
true
),
'OnUpdate'
=>
Array
(
'subitem'
=>
true
),
);
$this
->
permMapping
=
array_merge
(
$this
->
permMapping
,
$permissions
);
}
/**
* Saves user profile to database
*
* @param kEvent $event
* @return void
* @access protected
*/
protected
function
OnUpdate
(
kEvent
$event
)
{
$items_info
=
$this
->
Application
->
GetVar
(
$event
->
getPrefixSpecial
(
true
));
$user_id
=
key
(
$items_info
);
$field_values
=
$items_info
[
$user_id
];
if
(
$user_id
!=
$this
->
Application
->
RecallVar
(
'user_id'
))
{
// we are not updating own profile
return
;
}
$public_profile_add
=
Array
();
$public_profile_remove
=
Array
();
$profile_mapping
=
$this
->
Application
->
getUnitOption
(
'u'
,
'UserProfileMapping'
);
foreach
(
$field_values
as
$variable_name
=>
$variable_value
)
{
if
(
array_key_exists
(
$variable_name
,
$profile_mapping
))
{
// old style variable for displaying fields in public profile (named "pp_*")
if
(
$variable_value
)
{
$public_profile_add
[]
=
$profile_mapping
[
$variable_name
];
}
else
{
$public_profile_remove
[]
=
$profile_mapping
[
$variable_name
];
}
}
else
{
$this
->
Application
->
StorePersistentVar
(
$variable_name
,
$this
->
Application
->
unescapeRequestVariable
(
$variable_value
));
}
}
if
(
$public_profile_add
||
$public_profile_remove
)
{
/** @var kDBItem $user */
$user
=
$this
->
Application
->
recallObject
(
'u.current'
);
// get current value
$display_to_public_old
=
$user
->
GetDBField
(
'DisplayToPublic'
);
$display_to_public_new
=
$display_to_public_old
?
explode
(
'|'
,
substr
(
$display_to_public_old
,
1
,
-
1
))
:
Array
();
// update value
$display_to_public_new
=
array_diff
(
array_merge
(
$display_to_public_new
,
$public_profile_add
),
$public_profile_remove
);
$display_to_public_new
=
array_unique
(
$display_to_public_new
);
$display_to_public_new
=
$display_to_public_new
?
'|'
.
implode
(
'|'
,
$display_to_public_new
)
.
'|'
:
''
;
if
(
$display_to_public_new
!=
$display_to_public_old
)
{
$user
->
SetDBField
(
'DisplayToPublic'
,
$display_to_public_new
);
$user
->
Update
();
}
}
}
/**
* Adds virtual fields for "Display To Public" fields.
*
* @param kEvent $event Event.
*
* @return void
*/
protected
function
OnAfterConfigRead
(
kEvent
$event
)
{
parent
::
OnAfterConfigRead
(
$event
);
$profile_mapping
=
$this
->
Application
->
getUnitOption
(
'u'
,
'UserProfileMapping'
);
$virtual_fields
=
$this
->
Application
->
getUnitOption
(
$event
->
Prefix
,
'VirtualFields'
);
foreach
(
array_keys
(
$profile_mapping
)
as
$field_name
)
{
$virtual_fields
[
$field_name
]
=
array
(
'type'
=>
'int'
,
'formatter'
=>
'kOptionsFormatter'
,
'options'
=>
array
(
1
=>
'la_Yes'
,
2
=>
'la_No'
),
'use_phrases'
=>
1
,
'default'
=>
0
,
);
}
$this
->
Application
->
setUnitOption
(
$event
->
Prefix
,
'VirtualFields'
,
$virtual_fields
);
}
}
Event Timeline
Log In to Comment