blob: 028752ff5af43603a52b65c5057f11b38df2b256 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace Debugging\Resource;
class Stylesheet extends \BigPipe\Resource\Stylesheet {
public function __construct(string $customID, string $resourceURL) {
parent::__construct(...func_get_args());
foreach(['INIT', 'LOAD', 'DONE'] as $phase) {
$code = 'console.log("PhaseDoneJS for Stylesheet %%c#%s%%c: %s", "color:#4169E1", "color:inherit")';
$this->addPhaseDoneJS(constant("self::PHASE_$phase"), sprintf($code, $this->getID(), $phase));
}
}
}
|