1
|
|
|
<?php |
2
|
|
|
/* |
3
|
|
|
* This file is part of EC-CUBE |
4
|
|
|
* |
5
|
|
|
* Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved. |
6
|
|
|
* |
7
|
|
|
* http://www.lockon.co.jp/ |
8
|
|
|
* |
9
|
|
|
* This program is free software; you can redistribute it and/or |
10
|
|
|
* modify it under the terms of the GNU General Public License |
11
|
|
|
* as published by the Free Software Foundation; either version 2 |
12
|
|
|
* of the License, or (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* This program is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU General Public License |
20
|
|
|
* along with this program; if not, write to the Free Software |
21
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
22
|
|
|
*/ |
23
|
|
|
|
24
|
|
|
|
25
|
|
|
namespace Eccube\Repository; |
26
|
|
|
|
27
|
|
|
use Eccube\Annotation\Repository; |
28
|
|
|
use Eccube\Entity\MailTemplate; |
29
|
|
|
use Symfony\Component\Filesystem\Filesystem; |
30
|
|
|
use Eccube\Annotation\Inject; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* MailTemplateRepository |
34
|
|
|
* |
35
|
|
|
* This class was generated by the Doctrine ORM. Add your own custom |
36
|
|
|
* repository methods below. |
37
|
|
|
* |
38
|
|
|
* @Repository |
39
|
|
|
*/ |
40
|
|
|
class MailTemplateRepository extends AbstractRepository |
41
|
|
|
{ |
42
|
|
|
|
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @Inject("config") |
45
|
2 |
|
* @var array |
46
|
|
|
*/ |
47
|
2 |
|
protected $appConfig; |
48
|
2 |
|
|
|
|
|
|
49
|
|
|
/** |
|
|
|
|
50
|
|
|
* @deprecated 呼び出し元で制御する |
51
|
|
|
* @param $id |
|
|
|
|
52
|
|
|
* @return MailTemplate|null|object |
53
|
|
|
*/ |
54
|
2 |
|
public function findOrCreate($id) |
55
|
|
|
{ |
56
|
|
|
if ($id == 0) { |
57
|
|
|
$MailTemplate = new MailTemplate(); |
58
|
|
|
} else { |
59
|
|
|
$MailTemplate = $this->find($id); |
60
|
|
|
|
|
|
|
|
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
return $MailTemplate; |
64
|
|
|
} |
65
|
|
|
|
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* 書き込みパスの取得 |
68
|
|
|
* |
69
|
|
|
* @param boolean $isUser |
|
|
|
|
70
|
|
|
* @return string |
71
|
|
|
*/ |
72
|
|
|
public function getWriteTemplatePath() |
73
|
|
|
{ |
74
|
|
|
return $this->appConfig['template_realdir']; |
75
|
|
|
} |
76
|
|
|
|
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* 読み込みファイルの取得 |
79
|
|
|
* |
80
|
|
|
* 1. template_realdir |
81
|
|
|
* app/template/{template_code} |
82
|
|
|
* 2. template_default_readldir |
83
|
|
|
* src/Eccube/Resource/template/default |
84
|
|
|
* |
85
|
|
|
* @param string $fileName |
86
|
|
|
* |
87
|
|
|
* @return array |
88
|
|
|
*/ |
89
|
|
View Code Duplication |
public function getReadTemplateFile($fileName) |
|
|
|
|
90
|
|
|
{ |
91
|
|
|
|
|
|
|
|
92
|
|
|
$readPaths = array( |
93
|
|
|
$this->appConfig['template_realdir'], |
94
|
|
|
$this->appConfig['template_default_realdir'], |
95
|
|
|
); |
96
|
|
|
|
|
|
|
|
97
|
|
|
foreach ($readPaths as $readPath) { |
98
|
|
|
$filePath = $readPath . '/' . $fileName; |
|
|
|
|
99
|
|
|
$fs = new Filesystem(); |
100
|
|
|
if ($fs->exists($filePath)) { |
101
|
|
|
return array( |
102
|
|
|
'file_name' => $fileName, |
103
|
|
|
'tpl_data' => file_get_contents($filePath), |
104
|
|
|
); |
105
|
|
|
} |
106
|
|
|
} |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
|