Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1169304
reviews_config.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, Sep 25, 10:34 PM
Size
8 KB
Mime Type
text/x-php
Expires
Sat, Sep 27, 10:34 PM (1 d, 12 h)
Engine
blob
Format
Raw Data
Handle
757600
Attached To
rINP In-Portal
reviews_config.php
View Options
<?php
/**
* @version $Id: reviews_config.php 13289 2010-03-23 20:59:40Z 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!'
);
$config
=
Array
(
'Prefix'
=>
'rev'
,
'ItemClass'
=>
Array
(
'class'
=>
'kDBItem'
,
'file'
=>
''
,
'build_event'
=>
'OnItemBuild'
),
'ListClass'
=>
Array
(
'class'
=>
'kDBList'
,
'file'
=>
''
,
'build_event'
=>
'OnListBuild'
),
'EventHandlerClass'
=>
Array
(
'class'
=>
'ReviewsEventHandler'
,
'file'
=>
'reviews_event_handler.php'
,
'build_event'
=>
'OnBuild'
),
'TagProcessorClass'
=>
Array
(
'class'
=>
'ReviewsTagProcessor'
,
'file'
=>
'reviews_tag_processor.php'
,
'build_event'
=>
'OnBuild'
),
'AutoLoad'
=>
true
,
'QueryString'
=>
Array
(
1
=>
'id'
,
2
=>
'Page'
,
3
=>
'event'
,
4
=>
'mode'
,
),
'ParentPrefix'
=>
'p'
,
// replace all usage of rev to "p-rev" and then remove this param from here and Prefix too
'ConfigMapping'
=>
Array
(
'PerPage'
=>
'Comm_Perpage_Reviews'
,
'ReviewDelayInterval'
=>
'product_ReviewDelay_Value'
,
'ReviewDelayValue'
=>
'product_ReviewDelay_Interval'
,
),
'IDField'
=>
'ReviewId'
,
'StatusField'
=>
Array
(
'Status'
),
// field, that is affected by Approve/Decline events
'TableName'
=>
TABLE_PREFIX
.
'ItemReview'
,
'ParentTableKey'
=>
'ResourceId'
,
// linked field in master table
'ForeignKey'
=>
'ItemId'
,
// linked field in subtable
'AutoDelete'
=>
true
,
'AutoClone'
=>
true
,
'TitlePresets'
=>
Array
(
'reviews_edit'
=>
Array
(
'format'
=>
"!la_title_Editing_Review!"
),
'reviews'
=>
Array
(
'toolbar_buttons'
=>
Array
(
'edit'
,
'delete'
,
'approve'
,
'decline'
,
'view'
,
'dbl-click'
),
),
),
'FilterMenu'
=>
Array
(
'Groups'
=>
Array
(
Array
(
'mode'
=>
'AND'
,
'filters'
=>
Array
(
'show_active'
,
'show_pending'
,
'show_disabled'
),
'type'
=>
WHERE_FILTER
),
),
'Filters'
=>
Array
(
'show_active'
=>
Array
(
'label'
=>
'la_Active'
,
'on_sql'
=>
''
,
'off_sql'
=>
'%1$s.Status != 1'
),
'show_pending'
=>
Array
(
'label'
=>
'la_Pending'
,
'on_sql'
=>
''
,
'off_sql'
=>
'%1$s.Status != 2'
),
'show_disabled'
=>
Array
(
'label'
=>
'la_Disabled'
,
'on_sql'
=>
''
,
'off_sql'
=>
'%1$s.Status != 0'
),
)
),
'CalculatedFields'
=>
Array
(
''
=>
Array
(
'ReviewedBy'
=>
'IF( ISNULL(pu.Login), IF (%1$s.CreatedById = -1,
\'
root
\'
, IF (%1$s.CreatedById = -2,
\'
Guest
\'
,
\'
n/a
\'
)), pu.Login )'
,
),
'products'
=>
Array
(
'ReviewedBy'
=>
'IF( ISNULL(pu.Login), IF (%1$s.CreatedById = -1,
\'
root
\'
, IF (%1$s.CreatedById = -2,
\'
Guest
\'
,
\'
n/a
\'
)), pu.Login )'
,
'ItemName'
=>
'pr.l1_Name'
,
'ProductId'
=>
'pr.ProductId'
,
),
'product'
=>
Array
(
'ReviewedBy'
=>
'IF( ISNULL(pu.Login), IF (%1$s.CreatedById = -1,
\'
root
\'
, IF (%1$s.CreatedById = -2,
\'
Guest
\'
,
\'
n/a
\'
)), pu.Login )'
,
'ItemName'
=>
'pr.l1_Name'
,
'ProductId'
=>
'pr.ProductId'
,
),
),
// key - special, value - list select sql
'ListSQLs'
=>
Array
(
''
=>
' SELECT %1$s.* %2$s
FROM %1$s
LEFT JOIN '
.
TABLE_PREFIX
.
'PortalUser pu ON pu.PortalUserId = %1$s.CreatedById'
,
'products'
=>
' SELECT %1$s.* %2$s
FROM %1$s
LEFT JOIN '
.
TABLE_PREFIX
.
'Products pr ON pr.ResourceId = %1$s.ItemId
LEFT JOIN '
.
TABLE_PREFIX
.
'PortalUser pu ON pu.PortalUserId = %1$s.CreatedById'
,
'product'
=>
' SELECT %1$s.* %2$s
FROM %1$s
LEFT JOIN '
.
TABLE_PREFIX
.
'Products pr ON pr.ResourceId = %1$s.ItemId
LEFT JOIN '
.
TABLE_PREFIX
.
'PortalUser pu ON pu.PortalUserId = %1$s.CreatedById'
,
),
'ItemSQLs'
=>
Array
(
''
=>
'SELECT * FROM %s'
),
'ListSortings'
=>
Array
(
''
=>
Array
(
'ForcedSorting'
=>
Array
(
'Priority'
=>
'desc'
),
'Sorting'
=>
Array
(
'CreatedOn'
=>
'desc'
),
)
),
'Fields'
=>
Array
(
'ReviewId'
=>
Array
(
'type'
=>
'int'
,
'not_null'
=>
1
,
'default'
=>
0
),
'CreatedOn'
=>
Array
(
'type'
=>
'int'
,
'formatter'
=>
'kDateFormatter'
,
'default'
=>
'#NOW#'
,
),
'ReviewText'
=>
Array
(
'type'
=>
'string'
,
'formatter'
=>
'kFormatter'
,
'using_fck'
=>
1
,
'default'
=>
null
,
'required'
=>
1
,
),
'Rating'
=>
Array
(
'type'
=>
'int'
,
'formatter'
=>
'kOptionsFormatter'
,
'options'
=>
Array
(
0
=>
'lu_None'
,
1
=>
'lu_Rating_1'
,
2
=>
'lu_Rating_2'
,
3
=>
'lu_Rating_3'
,
4
=>
'lu_Rating_4'
,
5
=>
'lu_Rating_5'
),
'use_phrases'
=>
1
,
'min_value_inc'
=>
0
,
'max_value_inc'
=>
5
,
'default'
=>
0
,
),
'IPAddress'
=>
Array
(
'type'
=>
'string'
,
'max_value_inc'
=>
15
,
'not_null'
=>
1
,
'default'
=>
''
,
),
'ItemId'
=>
Array
(
'type'
=>
'int'
,
'not_null'
=>
1
,
'default'
=>
0
),
'CreatedById'
=>
Array
(
'type'
=>
'int'
,
'formatter'
=>
'kLEFTFormatter'
,
'options'
=>
Array
(-
1
=>
'root'
,
-
2
=>
'Guest'
),
'left_sql'
=>
'SELECT %s FROM '
.
TABLE_PREFIX
.
'PortalUser
WHERE `%s` =
\'
%s
\'
'
,
'left_key_field'
=>
'PortalUserId'
,
'left_title_field'
=>
'Login'
,
'required'
=>
1
,
'not_null'
=>
1
,
'default'
=>
-
1
,
'error_msgs'
=>
Array
(
'invalid_option'
=>
'!la_error_UserNotFound!'
),
),
'ItemType'
=>
Array
(
'type'
=>
'int'
,
'not_null'
=>
1
,
'default'
=>
0
),
'Priority'
=>
Array
(
'type'
=>
'int'
,
'not_null'
=>
1
,
'default'
=>
0
),
'Status'
=>
Array
(
'type'
=>
'int'
,
'formatter'
=>
'kOptionsFormatter'
,
'use_phrases'
=>
1
,
'options'
=>
Array
(
0
=>
'la_Disabled'
,
1
=>
'la_Active'
,
2
=>
'la_Pending'
,
),
'not_null'
=>
1
,
'default'
=>
2
,
),
'TextFormat'
=>
Array
(
'type'
=>
'int'
,
'formatter'
=>
'kOptionsFormatter'
,
'options'
=>
Array
(
0
=>
'la_text'
,
1
=>
'la_html'
),
'use_phrases'
=>
1
,
'not_null'
=>
1
,
'default'
=>
0
,
),
'Module'
=>
Array
(
'type'
=>
'string'
,
'not_null'
=>
1
,
'default'
=>
''
),
),
'VirtualFields'
=>
Array
(
'ReviewedBy'
=>
Array
(
'type'
=>
'string'
,
'default'
=>
''
),
'CatalogItemName'
=>
Array
(
'type'
=>
'string'
,
'default'
=>
''
),
'CatalogItemId'
=>
Array
(
'type'
=>
'int'
,
'default'
=>
0
),
'CatalogItemCategory'
=>
Array
(
'type'
=>
'int'
,
'default'
=>
0
),
),
'Grids'
=>
Array
(
'Default'
=>
Array
(
'Icons'
=>
Array
(
'default'
=>
'icon16_item.png'
,
0
=>
'icon16_disabled.png'
,
1
=>
'icon16_item.png'
,
2
=>
'icon16_pending.png'
,
),
'Fields'
=>
Array
(
'ReviewId'
=>
Array
(
'title'
=>
'la_col_Id'
,
'data_block'
=>
'grid_checkbox_td'
,
'filter_block'
=>
'grid_range_filter'
,
'width'
=>
60
,
),
'ReviewText'
=>
Array
(
'title'
=>
'la_col_ReviewText'
,
'filter_block'
=>
'grid_like_filter'
,
'width'
=>
210
,
'first_chars'
=>
200
,
),
'ReviewedBy'
=>
Array
(
'title'
=>
'la_col_ReviewedBy'
,
'filter_block'
=>
'grid_like_filter'
,
'width'
=>
100
,
),
'CreatedOn'
=>
Array
(
'title'
=>
'la_col_CreatedOn'
,
'filter_block'
=>
'grid_date_range_filter'
,
'width'
=>
145
,
),
'Status'
=>
Array
(
'title'
=>
'la_col_Status'
,
'filter_block'
=>
'grid_options_filter'
,
'width'
=>
80
,
),
'Rating'
=>
Array
(
'title'
=>
'la_col_Rating'
,
'filter_block'
=>
'grid_options_filter'
,
'width'
=>
80
,
),
),
),
'ReviewsSection'
=>
Array
(
'Icons'
=>
Array
(
'default'
=>
'icon16_item.png'
,
0
=>
'icon16_disabled.png'
,
1
=>
'icon16_item.png'
,
2
=>
'icon16_pending.png'
,
),
'Fields'
=>
Array
(
'ReviewId'
=>
Array
(
'title'
=>
'la_col_Id'
,
'data_block'
=>
'grid_checkbox_td'
,
'filter_block'
=>
'grid_range_filter'
,
'width'
=>
60
,
),
'ReviewText'
=>
Array
(
'title'
=>
'la_col_ReviewText'
,
'data_block'
=>
'grid_reviewtext_td'
,
'filter_block'
=>
'grid_like_filter'
,
'width'
=>
210
,
'first_chars'
=>
200
,
),
'ReviewedBy'
=>
Array
(
'title'
=>
'la_col_ReviewedBy'
,
'filter_block'
=>
'grid_like_filter'
,
'width'
=>
100
,
),
'CreatedOn'
=>
Array
(
'title'
=>
'la_col_CreatedOn'
,
'filter_block'
=>
'grid_date_range_filter'
,
'width'
=>
145
,
),
'Status'
=>
Array
(
'title'
=>
'la_col_Status'
,
'filter_block'
=>
'grid_options_filter'
,
'width'
=>
80
,
),
'Rating'
=>
Array
(
'title'
=>
'la_col_Rating'
,
'filter_block'
=>
'grid_options_filter'
,
'width'
=>
80
,
),
),
),
),
);
Event Timeline
Log In to Comment