Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100726704
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, Feb 2, 05:57
Size
947 B
Mime Type
text/x-php
Expires
Tue, Feb 4, 05:57 (2 d)
Engine
blob
Format
Raw Data
Handle
24019455
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