Page MenuHomeIn-Portal Phabricator

in-portal
No OneTemporary

File Metadata

Created
Mon, Mar 10, 10:02 AM

in-portal

Index: branches/RC/kernel/units/user_profile/user_profile_config.php
===================================================================
--- branches/RC/kernel/units/user_profile/user_profile_config.php (revision 10561)
+++ branches/RC/kernel/units/user_profile/user_profile_config.php (revision 10562)
@@ -1,36 +1,37 @@
<?php
$config = Array (
'Prefix' => 'user-profile',
'ItemClass' => Array('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
'ListClass' => Array('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
'EventHandlerClass' => Array('class' => 'UserProfileEventHandler', 'file' => 'user_profile_eh.php', 'build_event' => 'OnBuild'),
'TagProcessorClass' => Array('class' => 'UserProfileTagProcessor', 'file' => 'user_profile_tp.php', 'build_event' => 'OnBuild'),
'QueryString' => Array (
1 => 'id',
2 => 'Page',
3 => 'event',
4 => 'mode',
),
'IDField' => 'VariableId',
'TableName' => TABLE_PREFIX.'PersistantSessionData',
'ForeignKey' => 'PortalUserId',
'ParentTableKey' => 'PortalUserId',
'ParentPrefix' => 'u',
'AutoDelete' => true,
'AutoClone' => true,
'ListSQLs' => Array('' => 'SELECT %1$s.* %2$s FROM %1$s',),
'ItemSQLs' => Array('' => 'SELECT %1$s.* %2$s FROM %1$s',),
'Fields' => Array (
+ 'VariableId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
'PortalUserId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
'VariableName' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
'VariableValue' => Array ('type' => 'string', 'not_null' => 1, 'default' => ''),
),
);
?>
\ No newline at end of file
Property changes on: branches/RC/kernel/units/user_profile/user_profile_config.php
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.3.2.1
\ No newline at end of property
+1.3.2.2
\ No newline at end of property
Index: branches/RC/core/units/user_profile/user_profile_config.php
===================================================================
--- branches/RC/core/units/user_profile/user_profile_config.php (revision 10561)
+++ branches/RC/core/units/user_profile/user_profile_config.php (revision 10562)
@@ -1,36 +1,37 @@
<?php
$config = Array (
'Prefix' => 'user-profile',
'ItemClass' => Array('class' => 'kDBItem', 'file' => '', 'build_event' => 'OnItemBuild'),
'ListClass' => Array('class' => 'kDBList', 'file' => '', 'build_event' => 'OnListBuild'),
'EventHandlerClass' => Array('class' => 'UserProfileEventHandler', 'file' => 'user_profile_eh.php', 'build_event' => 'OnBuild'),
'TagProcessorClass' => Array('class' => 'UserProfileTagProcessor', 'file' => 'user_profile_tp.php', 'build_event' => 'OnBuild'),
'QueryString' => Array (
1 => 'id',
2 => 'Page',
3 => 'event',
4 => 'mode',
),
'IDField' => 'VariableId',
'TableName' => TABLE_PREFIX.'PersistantSessionData',
'ForeignKey' => 'PortalUserId',
'ParentTableKey' => 'PortalUserId',
'ParentPrefix' => 'u',
'AutoDelete' => true,
'AutoClone' => true,
'ListSQLs' => Array('' => 'SELECT %1$s.* %2$s FROM %1$s',),
'ItemSQLs' => Array('' => 'SELECT %1$s.* %2$s FROM %1$s',),
'Fields' => Array (
+ 'VariableId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
'PortalUserId' => Array ('type' => 'int', 'not_null' => 1, 'default' => 0),
'VariableName' => Array ('type' => 'string', 'max_len' => 255, 'not_null' => 1, 'default' => ''),
'VariableValue' => Array ('type' => 'string', 'not_null' => 1, 'default' => ''),
),
);
?>
\ No newline at end of file
Property changes on: branches/RC/core/units/user_profile/user_profile_config.php
___________________________________________________________________
Modified: cvs2svn:cvs-rev
## -1 +1 ##
-1.3.2.1
\ No newline at end of property
+1.3.2.2
\ No newline at end of property

Event Timeline