Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108051264
ManiphestExcelFormat.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Apr 13, 16:01
Size
947 B
Mime Type
text/x-php
Expires
Tue, Apr 15, 16:01 (2 d)
Engine
blob
Format
Raw Data
Handle
25516896
Attached To
rPH Phabricator
ManiphestExcelFormat.php
View Options
<?php
abstract
class
ManiphestExcelFormat
{
final
public
static
function
loadAllFormats
()
{
$classes
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
__CLASS__
)
->
setConcreteOnly
(
true
)
->
selectAndLoadSymbols
();
$objects
=
array
();
foreach
(
$classes
as
$class
)
{
$objects
[
$class
[
'name'
]]
=
newv
(
$class
[
'name'
],
array
());
}
$objects
=
msort
(
$objects
,
'getOrder'
);
return
$objects
;
}
abstract
public
function
getName
();
abstract
public
function
getFileName
();
public
function
getOrder
()
{
return
0
;
}
protected
function
computeExcelDate
(
$epoch
)
{
$seconds_per_day
=
(
60
*
60
*
24
);
$offset
=
(
$seconds_per_day
*
25569
);
return
(
$epoch
+
$offset
)
/
$seconds_per_day
;
}
/**
* @phutil-external-symbol class PHPExcel
*/
abstract
public
function
buildWorkbook
(
PHPExcel
$workbook
,
array
$tasks
,
array
$handles
,
PhabricatorUser
$user
);
}
Event Timeline
Log In to Comment