-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathFile.php
39 lines (32 loc) · 1.13 KB
/
File.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
declare(strict_types=1);
namespace ClawRock\Debug\Helper;
class File
{
private \Magento\Framework\App\Filesystem\DirectoryList $directoryList;
public function __construct(
\Magento\Framework\App\Filesystem\DirectoryList $directoryList
) {
$this->directoryList = $directoryList;
}
public function getProfileDirectory(): string
{
return $this->directoryList->getPath('var') . DIRECTORY_SEPARATOR . 'debug';
}
public function getProfileIndex(): string
{
return $this->directoryList->getPath('var') . DIRECTORY_SEPARATOR . 'debug' . DIRECTORY_SEPARATOR . 'index.csv';
}
public function getProfileTempIndex(): string
{
return $this->directoryList->getPath('var') . DIRECTORY_SEPARATOR . 'debug' . DIRECTORY_SEPARATOR . 'tmp'
. DIRECTORY_SEPARATOR . 'index.csv';
}
public function getProfileFilename(string $token): string
{
return $this->getProfileDirectory() . DIRECTORY_SEPARATOR
. substr($token, -2, 2) . DIRECTORY_SEPARATOR
. substr($token, -4, 2) . DIRECTORY_SEPARATOR
. $token;
}
}