Page MenuHomestyx hydra

ManiphestExcelFormat.php
No OneTemporary

ManiphestExcelFormat.php

<?php
abstract class ManiphestExcelFormat extends Phobject {
final public static function loadAllFormats() {
return id(new PhutilClassMapQuery())
->setAncestorClass(__CLASS__)
->setSortMethod('getOrder')
->execute();
}
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);
}

File Metadata

Mime Type
text/x-php
Expires
Tue, Feb 24, 7:15 PM (15 h, 41 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
851005
Default Alt Text
ManiphestExcelFormat.php (755 B)

Event Timeline