Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1242990
favorites_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
Thu, Nov 20, 4:09 PM
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Nov 22, 4:09 PM (13 h, 47 m)
Engine
blob
Format
Raw Data
Handle
807115
Attached To
rINP In-Portal
favorites_eh.php
View Options
<?php
/**
* @version $Id: favorites_eh.php 15145 2012-03-04 09:04:08Z 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
FavoritesEventHandler
extends
kDBEventHandler
{
/**
* Allows to override standard permission mapping
*
* @return void
* @access protected
* @see kEventHandler::$permMapping
*/
protected
function
mapPermissions
()
{
parent
::
mapPermissions
();
$permissions
=
Array
(
'OnFavoriteToggle'
=>
Array
(
'subitem'
=>
true
),
);
$this
->
permMapping
=
array_merge
(
$this
->
permMapping
,
$permissions
);
}
/**
* Adds/removes item from favorites
*
* @param kEvent $event
*/
function
OnFavoriteToggle
(
$event
)
{
$parent_prefix
=
$this
->
Application
->
getUnitOption
(
$event
->
Prefix
,
'ParentPrefix'
);
$parent_object
=
$this
->
Application
->
recallObject
(
$parent_prefix
);
/* @var $parent_object kDBItem */
if
(!
$parent_object
->
isLoaded
()
||
!
$this
->
Application
->
CheckPermission
(
'FAVORITES'
,
0
,
$parent_object
->
GetDBField
(
'ParentPath'
)))
{
$event
->
status
=
kEvent
::
erPERM_FAIL
;
return
;
}
$user_id
=
$this
->
Application
->
RecallVar
(
'user_id'
);
$sql
=
'SELECT FavoriteId
FROM '
.
$this
->
Application
->
getUnitOption
(
$event
->
Prefix
,
'TableName'
).
'
WHERE (PortalUserId = '
.
$user_id
.
') AND (ResourceId = '
.
$parent_object
->
GetDBField
(
'ResourceId'
).
')'
;
$favorite_id
=
$this
->
Conn
->
GetOne
(
$sql
);
$object
=
$event
->
getObject
(
Array
(
'skip_autoload'
=>
true
));
/* @var $object kDBItem */
if
(
$favorite_id
)
{
$object
->
Delete
(
$favorite_id
);
}
else
{
$object
->
Create
();
}
$event
->
SetRedirectParam
(
'pass'
,
'm,'
.
$parent_prefix
);
}
/**
* Prepares Favorite record fields
*
* @param kEvent $event
* @return void
* @access protected
*/
protected
function
OnBeforeItemCreate
(
kEvent
$event
)
{
parent
::
OnBeforeItemCreate
(
$event
);
$object
=
$event
->
getObject
();
/* @var $object kDBItem */
$user_id
=
$this
->
Application
->
RecallVar
(
'user_id'
);
$object
->
SetDBField
(
'PortalUserId'
,
$user_id
);
$parent_prefix
=
$this
->
Application
->
getUnitOption
(
$event
->
Prefix
,
'ParentPrefix'
);
$parent_object
=
$this
->
Application
->
recallObject
(
$parent_prefix
);
/* @var $parent_object kDBItem */
$object
->
SetDBField
(
'ResourceId'
,
$parent_object
->
GetDBField
(
'ResourceId'
));
$object
->
SetDBField
(
'ItemTypeId'
,
$this
->
Application
->
getUnitOption
(
$parent_prefix
,
'ItemType'
));
}
/**
* [HOOK] Deletes favorite record to item, that is beeing deleted
*
* @param kEvent $event
*/
function
OnDeleteFavoriteItem
(
$event
)
{
$main_object
=
$event
->
MasterEvent
->
getObject
();
$sql
=
'DELETE FROM '
.
$this
->
Application
->
getUnitOption
(
$event
->
Prefix
,
'TableName'
).
'
WHERE ResourceId = '
.
$main_object
->
GetDBField
(
'ResourceId'
);
$this
->
Conn
->
Query
(
$sql
);
}
}
Event Timeline
Log In to Comment