Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1050985
stylesheets_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
Thu, Jul 3, 6:25 PM
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jul 5, 6:25 PM (15 h, 50 m)
Engine
blob
Format
Raw Data
Handle
679093
Attached To
rINP In-Portal
stylesheets_item.php
View Options
<?php
class
StylesheetsItem
extends
kDBItem
{
function
Compile
()
{
$this
->
Application
->
setUnitOption
(
'selectors'
,
'AutoLoad'
,
false
);
$selector_item
=&
$this
->
Application
->
recallObject
(
'selectors.item'
,
'selectors'
,
Array
(
'live_table'
=>
true
)
);
$parent_field
=
$this
->
Application
->
getUnitOption
(
$selector_item
->
Prefix
,
'ForeignKey'
);
$sql_template
=
'SELECT '
.
$selector_item
->
IDField
.
' FROM '
.
$selector_item
->
TableName
.
' WHERE '
.
$parent_field
.
' = %s'
;
$selectors_ids
=
$this
->
Conn
->
GetCol
(
sprintf
(
$sql_template
,
$this
->
GetID
()
)
);
$ret
=
'/* This file is generated automatically. Don
\'
t edit it manually ! */'
.
"
\n\n
"
;
foreach
(
$selectors_ids
as
$selector_id
)
{
$selector_item
->
Load
(
$selector_id
);
$ret
.=
$selector_item
->
CompileStyle
().
"
\n
"
;
}
$ret
.=
$this
->
GetDBField
(
'AdvancedCSS'
);
$compile_ts
=
adodb_mktime
();
$css_path
=
FULL_PATH
.
'/kernel/stylesheets/'
;
$css_file
=
$css_path
.
strtolower
(
$this
->
GetDBField
(
'Name'
)).
'-'
.
$compile_ts
.
'.css'
;
$fp
=
fopen
(
$css_file
,
'w'
);
if
(
$fp
)
{
$prev_css
=
$css_path
.
strtolower
(
$this
->
GetDBField
(
'Name'
)).
'-'
.
$this
->
GetDBField
(
'LastCompiled'
).
'.css'
;
if
(
file_exists
(
$prev_css
)
)
unlink
(
$prev_css
);
fwrite
(
$fp
,
$ret
);
fclose
(
$fp
);
$sql
=
'UPDATE '
.
$this
->
TableName
.
' SET LastCompiled = '
.
$compile_ts
.
' WHERE '
.
$this
->
IDField
.
' = '
.
$this
->
GetID
();
$this
->
Conn
->
Query
(
$sql
);
}
}
}
?>
Event Timeline
Log In to Comment