Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1204825
theme_item.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
Wed, Nov 5, 2:33 PM
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Nov 7, 2:33 PM (11 h, 50 m)
Engine
blob
Format
Raw Data
Handle
786310
Attached To
rINP In-Portal
theme_item.php
View Options
<?php
/**
* @version $Id: theme_item.php 12726 2009-10-20 15:31:22Z 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.net/license/ for copyright notices and details.
*/
defined
(
'FULL_PATH'
)
or
die
(
'restricted access!'
);
class
ThemeItem
extends
kDBItem
{
function
Load
(
$id
,
$id_field_name
=
null
)
{
$default
=
false
;
if
(
$id
==
'default'
)
{
$id
=
1
;
$id_field_name
=
'PrimaryTheme'
;
$default
=
true
;
}
$res
=
parent
::
Load
(
$id
,
$id_field_name
);
if
(
$default
)
{
if
(!
$res
)
{
if
(
$this
->
Application
->
isAdmin
)
{
$res
=
parent
::
Load
(
1
);
}
}
$this
->
Application
->
SetVar
(
'theme.current_id'
,
$this
->
GetID
()
);
$this
->
Application
->
SetVar
(
'm_theme'
,
$this
->
GetID
()
);
}
return
$res
;
}
}
Event Timeline
Log In to Comment